mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 07:33:34 +01:00
Fully refactors Chairs, Stools & Beds. Adds a few fun bits
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user