mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 20:45:28 +01:00
[GBP No Update] Perish, individual logging runtime (#69024)
missed 2 or 3(lol it was more when I look back at the files), LOG_GAME tags on the log_message line, and did some cleaning up since i was looking through every log_message again Co-authored-by: tattle <66640614+dragomagol@users.noreply.github.com> Co-authored-by: tattle <66640614+dragomagol@users.noreply.github.com>
This commit is contained in:
@@ -75,7 +75,7 @@
|
||||
balloon_alert(user, "needs [reagents.maximum_volume]u of charge!")
|
||||
return
|
||||
visible_message(ignition_message)
|
||||
user.log_message("fired a cannon in [AREACOORD(src)]", LOG_ATTACK)
|
||||
user.log_message("fired a cannon", LOG_ATTACK)
|
||||
log_game("[key_name(user)] fired a cannon in [AREACOORD(src)]")
|
||||
addtimer(CALLBACK(src, .proc/fire), fire_delay)
|
||||
charge_ignited = TRUE
|
||||
|
||||
@@ -408,7 +408,7 @@
|
||||
user.visible_message(span_notice("[user] [welded ? "welds shut" : "unwelded"] \the [src]."),
|
||||
span_notice("You [welded ? "weld" : "unwelded"] \the [src] with \the [W]."),
|
||||
span_hear("You hear welding."))
|
||||
user.log_message("[welded ? "welded":"unwelded"] closet [src] with [W] at [AREACOORD(src)]", LOG_GAME)
|
||||
user.log_message("[welded ? "welded":"unwelded"] closet [src] with [W]", LOG_GAME)
|
||||
update_appearance()
|
||||
else if (can_install_electronics && istype(W, /obj/item/electronics/airlock)\
|
||||
&& !secure && !electronics && !locked && (welded || !can_weld_shut) && !broken)
|
||||
|
||||
@@ -308,7 +308,7 @@
|
||||
user.visible_message(span_notice("[user] [sinched ? null : "un"]sinches [src]."),
|
||||
span_notice("You [sinched ? null : "un"]sinch [src]."),
|
||||
span_hear("You hear stretching followed by metal clicking from [src]."))
|
||||
user.log_message("[sinched ? "sinched":"unsinched"] secure environmental bag [src] at [AREACOORD(src)]", LOG_GAME)
|
||||
user.log_message("[sinched ? "sinched":"unsinched"] secure environmental bag [src]", LOG_GAME)
|
||||
update_appearance()
|
||||
|
||||
/obj/structure/closet/body_bag/environmental/prisoner/pressurized
|
||||
|
||||
@@ -177,7 +177,7 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/shower, (-16))
|
||||
if(SHOWER_BOILING)
|
||||
current_temperature = SHOWER_NORMAL
|
||||
user.visible_message(span_notice("[user] adjusts the shower with \the [I]."), span_notice("You adjust the shower with \the [I] to [current_temperature] temperature."))
|
||||
user.log_message("has wrenched a shower at [AREACOORD(src)] to [current_temperature].", LOG_ATTACK)
|
||||
user.log_message("has wrenched a shower to [current_temperature].", LOG_ATTACK)
|
||||
add_hiddenprint(user)
|
||||
handle_mist()
|
||||
return TRUE
|
||||
|
||||
Reference in New Issue
Block a user