mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 19:22:56 +00:00
@@ -362,6 +362,8 @@
|
|||||||
|
|
||||||
qdel(R.mmi)
|
qdel(R.mmi)
|
||||||
for(var/obj/item/I in R.module) // the tools the borg has; metal, glass, guns etc
|
for(var/obj/item/I in R.module) // the tools the borg has; metal, glass, guns etc
|
||||||
|
for(var/mob/M in I) //VOREStation edit
|
||||||
|
despawn_occupant(M)
|
||||||
for(var/obj/item/O in I) // the things inside the tools, if anything; mainly for janiborg trash bags
|
for(var/obj/item/O in I) // the things inside the tools, if anything; mainly for janiborg trash bags
|
||||||
O.forceMove(R)
|
O.forceMove(R)
|
||||||
qdel(I)
|
qdel(I)
|
||||||
|
|||||||
@@ -114,6 +114,8 @@
|
|||||||
var/obj/structure/closet/crate/C = new(get_turf(src))
|
var/obj/structure/closet/crate/C = new(get_turf(src))
|
||||||
// Put loot in crate
|
// Put loot in crate
|
||||||
for(var/obj/O in src)
|
for(var/obj/O in src)
|
||||||
|
if(isbelly(O)) //VOREStation edit
|
||||||
|
continue
|
||||||
O.forceMove(C)
|
O.forceMove(C)
|
||||||
..()
|
..()
|
||||||
|
|
||||||
@@ -146,6 +148,8 @@ var/global/list/protected_objects = list(/obj/structure/table, /obj/structure/ca
|
|||||||
/mob/living/simple_animal/hostile/mimic/copy/death()
|
/mob/living/simple_animal/hostile/mimic/copy/death()
|
||||||
|
|
||||||
for(var/atom/movable/M in src)
|
for(var/atom/movable/M in src)
|
||||||
|
if(isbelly(M)) //VOREStation edit
|
||||||
|
continue
|
||||||
M.forceMove(get_turf(src))
|
M.forceMove(get_turf(src))
|
||||||
..()
|
..()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user