mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 03:27:05 +01:00
Fixes headpockets not being able to store small items (#20835)
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
if(istype(I, /obj/item/disk/nuclear))
|
||||
to_chat(owner, "<span class='warning'>[I] slips out of your [name]!</span>")
|
||||
return
|
||||
if(I.w_class >= WEIGHT_CLASS_SMALL)
|
||||
if(I.w_class > WEIGHT_CLASS_SMALL)
|
||||
to_chat(owner, "<span class='notice'>[I] is too large to fit in your [name].</span>")
|
||||
return
|
||||
if(owner.unEquip(I))
|
||||
|
||||
Reference in New Issue
Block a user