Buy_House()
set category = "Housing"
var/obj/housing/sign/H = get_step(src,src.dir)
if(istype(H,/turf))
src << "Sorry, the game seems to think we are looking at the floor."
return
if(H)
H.Buy(src)
return
else
src << "This is no housig sign here."
Problem description:
This is too find the obj/housing in get_step. Instead it returns the turf the obj is sitting on.