Things should be throwable past tables. Response team should work a bit better, added space suit for medics.

This commit is contained in:
SkyMarshal
2012-01-25 08:41:11 -07:00
parent 88c283ea1a
commit 0aee00be62
3 changed files with 15 additions and 1 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ TABLE AND RACK OBJECT INTERATIONS
/obj/structure/table/CanPass(atom/movable/mover, turf/target, height=0, air_group=0)
if(air_group || (height==0)) return 1
if(istype(mover) && mover.checkpass(PASSTABLE))
if(istype(mover) && (mover.checkpass(PASSTABLE) || mover.checkpass(TABLEPASS))) //WTF do things hit tables like that? Jeez.
return 1
else
return 0