mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
[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:
committed by
GitHub
parent
85abe91473
commit
f7e20d021e
@@ -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
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user