mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-30 07:27:57 +01:00
fix(17003): can't dispose abstract items
Abstract items (such as slapper) should't be allow to be disposed away.
This commit is contained in:
@@ -95,7 +95,7 @@
|
||||
|
||||
// attack by item places it in to disposal
|
||||
/obj/machinery/disposal/attackby(obj/item/I, mob/user, params)
|
||||
if(stat & BROKEN || !I || !user)
|
||||
if(stat & BROKEN || !I || !user || I.flags & ABSTRACT)
|
||||
return
|
||||
|
||||
src.add_fingerprint(user)
|
||||
|
||||
Reference in New Issue
Block a user