ID:140352
 
Code:
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.

get_step() returns a turf. You'll need to use locate() as well if you want to find an obj that is contained in that turf.
In response to Garthor
so locate(get_step(src,src.dir)) then.
In response to Dpheonix7
Close, but not quite. Look up locate() in the Reference.