Skip to content

Commit

Permalink
no more buckling xenos into chairs (#6149)
Browse files Browse the repository at this point in the history
# About the pull request
you can no longer buckle xenos into chairs

# Explain why it's good for the game
BUG BAD!!! 
I DIED TO THIS!!!
SPEEDMERGE

# Testing Photographs and Procedure
it work

# Changelog
:cl:
fix: You can no longer buckle xenos onto chairs
/:cl:
  • Loading branch information
iloveloopers authored Apr 16, 2024
1 parent 292f1f5 commit 537b97e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/game/objects/objs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -303,9 +303,9 @@
if (M.mob_size <= MOB_SIZE_XENO)
if ((M.stat == DEAD && istype(src, /obj/structure/bed/roller) || HAS_TRAIT(M, TRAIT_OPPOSABLE_THUMBS)))
do_buckle(M, user)
else if ((M.mob_size > MOB_SIZE_HUMAN))
to_chat(user, SPAN_WARNING("[M] is too big to buckle in."))
return
if ((M.mob_size > MOB_SIZE_HUMAN))
to_chat(user, SPAN_WARNING("[M] is too big to buckle in."))
return
do_buckle(M, user)

// the actual buckling proc
Expand Down

0 comments on commit 537b97e

Please sign in to comment.