More runtimes (#7917)

This commit is contained in:
Raeschen
2024-03-10 14:47:41 +01:00
committed by GitHub
parent 2b30041c6f
commit 05552c5c7a
4 changed files with 9 additions and 6 deletions

View File

@@ -871,7 +871,11 @@ Turf and target are seperate in case you want to teleport some distance from a t
"parent_type",
"verbs",
"ckey",
"key"
"key",
"_active_timers", // ChompEDIT - blacklist timers
"_datum_components", // ChompEDIT - blacklist DCS
"_listen_lookup", // ChompEDIT - blacklist signal listeners
"_signal_procs" // ChompEDIT - blacklist signal procs
)
if(perfectcopy)
if((O) && (original))

View File

@@ -147,7 +147,7 @@
target = tray
times_idle = 0 //VOREStation Add - Idle shutoff time
return
if(!target && refills_water && tank && tank.reagents.total_volume < tank.reagents.maximum_volume)
if(!target && refills_water && tank && tank.reagents?.total_volume < tank.reagents.maximum_volume) // ChompEDIT - runtime
for(var/obj/structure/sink/source in view(7, src))
target = source
times_idle = 0 //VOREStation Add - Idle shutoff time
@@ -419,4 +419,4 @@
created_name = t
/obj/item/weapon/farmbot_arm_assembly/attack_hand(mob/user as mob)
return //it's a converted watertank, no you cannot pick it up and put it in your backpack
return //it's a converted watertank, no you cannot pick it up and put it in your backpack

View File

@@ -209,7 +209,7 @@
else
to_chat(owner, "<span class='notice'>You will no longer aim rather than fire.</span>")
owner.client.remove_gun_icons()
owner.gun_setting_icon.icon_state = "gun[active]"
owner.gun_setting_icon?.icon_state = "gun[active]"
/obj/aiming_overlay/proc/cancel_aiming(var/no_message = 0)
if(!aiming_with || !aiming_at)
@@ -224,4 +224,3 @@
aiming_at = null
loc = null
STOP_PROCESSING(SSobj, src)

View File

@@ -402,7 +402,7 @@
projectile_dispersion = 100
projectile_accuracy = -100
base_attack_cooldown = 0
base_attack_cooldown = 0.01 // Division by zero error if 0
/mob/living/simple_mob/humanoid/eclipse/lunar/ravanger //Tanky boi. Very deadly melee
name = "Lunar Eclipse Ravanger"