[MIRROR] Better borg modules (#11095)

Co-authored-by: Cameron Lennox <killer65311@gmail.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-06-20 13:04:56 -07:00
committed by GitHub
parent 85abe91473
commit f7e20d021e
78 changed files with 1785 additions and 1133 deletions

View File

@@ -116,7 +116,7 @@
to_chat(usr,span_warning("The device beeps a warning that the target is already sentient!"))
return
if(is_type_in_list(item, item_vore_blacklist))
if(is_type_in_list(item, GLOB.item_vore_blacklist))
to_chat(usr,span_danger("The item resists your transfer attempt!"))
return

View File

@@ -170,7 +170,7 @@
playsound(src, 'sound/machines/kitchen/candymaker/candymaker-mid1.ogg', auto_setting * 20, 1, -1)
var/vac_conga = 0
for(var/atom/movable/F in suckables)
if(is_type_in_list(F,item_vore_blacklist) || F.loc != target)
if(is_type_in_list(F, GLOB.item_vore_blacklist) || F.loc != target)
continue
if(istype(F,/obj/effect/decal/cleanable))
if(isbelly(output_dest))
@@ -209,7 +209,7 @@
return
if(istype(target,/obj/item))
var/obj/item/I = target
if(is_type_in_list(I,item_vore_blacklist) || I.w_class >= ITEMSIZE_HUGE)
if(is_type_in_list(I, GLOB.item_vore_blacklist) || I.w_class >= ITEMSIZE_HUGE)
return
if(vac_power > I.w_class)
if(vac_power == 7)