mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
More runtimes (#7917)
This commit is contained in:
@@ -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))
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user