mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-24 04:28:12 +01:00
up ports endless mouseburger fix (#16461)
This commit is contained in:
@@ -209,6 +209,14 @@
|
||||
var/obj/item/I = locate(i) in container
|
||||
if (I && I.reagents)
|
||||
I.reagents.trans_to_holder(buffer,I.reagents.total_volume)
|
||||
// Outpost 21 upport start - Handle holders dropping mobs on destruction. No more endless mice burgers
|
||||
if(istype(I,/obj/item/holder))
|
||||
var/obj/item/holder/hol = I
|
||||
if(hol.held_mob?.client)
|
||||
hol.held_mob.ghostize()
|
||||
qdel(hol.held_mob)
|
||||
hol.held_mob = null
|
||||
// Outpost 21 upport end
|
||||
qdel(I)
|
||||
|
||||
//Find fruits
|
||||
|
||||
Reference in New Issue
Block a user