mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-02 13:32:32 +00:00
Makes \s be properly used. (#11066)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user