Makes \s be properly used. (#11066)

This commit is contained in:
MarinaGryphon
2021-02-15 05:49:27 -06:00
committed by GitHub
parent a33a89f8ae
commit 18e4922626
13 changed files with 15 additions and 15 deletions

View File

@@ -169,7 +169,7 @@ var/CURRENT_TICKLIMIT = TICK_LIMIT_RUNNING
initializing = FALSE
initialization_time_taken = time
var/msg = "Initializations complete within [time] second[time == 1 ? "" : "s"]!"
var/msg = "Initializations complete within [time] second\s!"
log_mc(msg)
admin_notice(SPAN_DANGER(msg), R_DEBUG)
world.log << msg

View File

@@ -171,7 +171,7 @@
/datum/controller/subsystem/Initialize(start_timeofday)
var/time = (REALTIMEOFDAY - start_timeofday) / 10
init_time = time
var/msg = "Initialized [name] subsystem within [time] second[time == 1 ? "" : "s"]!"
var/msg = "Initialized [name] subsystem within [time] second\s!"
admin_notice(SPAN_DANGER(msg), R_DEBUG)
world.log << "SS Init: [msg]"
log_ss_init(msg)

View File

@@ -294,7 +294,7 @@ var/datum/controller/subsystem/ticker/SSticker
robo.laws.show_laws(world)
if(dronecount)
to_world("<b>There [dronecount>1 ? "were" : "was"] [dronecount] industrious maintenance [dronecount>1 ? "drones" : "drone"] at the end of this round.</b>")
to_world("<b>There [dronecount>1 ? "were" : "was"] [dronecount] industrious maintenance drone\s at the end of this round.</b>")
mode.declare_completion()//To declare normal completion.