Fully refactors Chairs, Stools & Beds. Adds a few fun bits

This commit is contained in:
Purpose
2018-09-14 18:40:42 +01:00
parent e340389c49
commit efbcd54cf2
107 changed files with 2210 additions and 2053 deletions
+2 -2
View File
@@ -380,7 +380,7 @@ var/static/regex/multispin_words = regex("like a record baby")
else if((findtext(message, sit_words)))
for(var/V in listeners)
var/mob/living/L = V
for(var/obj/structure/stool/bed/chair/chair in get_turf(L))
for(var/obj/structure/chair/chair in get_turf(L))
chair.buckle_mob(L)
break
next_command = world.time + cooldown_meme
@@ -389,7 +389,7 @@ var/static/regex/multispin_words = regex("like a record baby")
else if((findtext(message, stand_words)))
for(var/V in listeners)
var/mob/living/L = V
if(L.buckled && istype(L.buckled, /obj/structure/stool/bed/chair))
if(L.buckled && istype(L.buckled, /obj/structure/chair))
L.buckled.unbuckle_mob(L)
next_command = world.time + cooldown_meme