mirror of
https://github.com/KabKebab/GS13.git
synced 2026-02-07 22:27:42 +00:00
a
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
return ..()
|
||||
|
||||
var/stuckage_weight = L?.client?.prefs?.stuckage
|
||||
if(!stuckage_weight)
|
||||
if(isnull(stuckage_weight) || (stuckage_weight < 10))
|
||||
return ..() // They aren't able to get stuck
|
||||
|
||||
if(L.fatness > (stuckage_weight * 2))
|
||||
|
||||
@@ -117,7 +117,7 @@
|
||||
return
|
||||
|
||||
var/breaking_weight = M?.client?.prefs?.chair_breakage
|
||||
if(!breaking_weight || (M != user) || ((breaking_weight / 3) > M.fatness))
|
||||
if(isnull(breaking_weight) || (breaking_weight < 10) || (M != user) || ((breaking_weight / 3) > M.fatness))
|
||||
M.visible_message(\
|
||||
"<span class='warning'>[user] buckles [M] to [src]!</span>",\
|
||||
"<span class='warning'>[user] buckles you to [src]!</span>",\
|
||||
|
||||
Reference in New Issue
Block a user