mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-11 15:15:32 +01:00
Subsystem overruns (#18744)
* fix sun subsytem overrun * . * . * night shift overrun * . * . * this * . * .
This commit is contained in:
@@ -668,7 +668,7 @@
|
||||
if(last_adrenaline_rush && last_adrenaline_rush + (30 MINUTES) > world.time)
|
||||
return
|
||||
last_adrenaline_rush = world.time
|
||||
log_and_message_admins("[H]'s adrenaline rush trait just activated!")
|
||||
log_and_message_admins("[H]'s adrenaline rush trait just activated!", H)
|
||||
H.add_modifier(/datum/modifier/adrenaline, 30 SECONDS)
|
||||
|
||||
/datum/modifier/adrenaline
|
||||
|
||||
@@ -160,7 +160,7 @@
|
||||
if(istype(target,/obj/item/trash))
|
||||
user.visible_message(span_filter_notice("[user] nibbles away at \the [target.name]."), span_notice("You begin to nibble away at \the [target.name]..."))
|
||||
busy = 1
|
||||
if(do_after (user, 50))
|
||||
if(do_after (user, 5 SECONDS, target))
|
||||
user.visible_message(span_filter_notice("[user] finishes eating \the [target.name]."), span_notice("You finish eating \the [target.name]."))
|
||||
to_chat(user, span_notice("You finish off \the [target.name]."))
|
||||
qdel(target)
|
||||
@@ -171,7 +171,7 @@
|
||||
if(istype(target,/obj/item/cell))
|
||||
user.visible_message(span_filter_notice("[user] begins cramming \the [target.name] down its throat."), span_notice("You begin cramming \the [target.name] down your throat..."))
|
||||
busy = 1
|
||||
if(do_after (user, 50))
|
||||
if(do_after (user, 5 SECONDS, target))
|
||||
user.visible_message(span_filter_notice("[user] finishes gulping down \the [target.name]."), span_notice("You finish swallowing \the [target.name]."))
|
||||
to_chat(user, span_notice("You finish off \the [target.name], and gain some charge!"))
|
||||
var/mob/living/silicon/robot/R = user
|
||||
|
||||
Reference in New Issue
Block a user