1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00

Change locale danger_ore->danger_ores

This commit is contained in:
James Gillham 2020-12-29 12:38:25 +00:00
parent e55d8987e8
commit 8f7d040c12
2 changed files with 4 additions and 4 deletions

View File

@ -170,7 +170,7 @@ entity_not_enough_ground_support=__1__ requires at least: __2__
anti_grief_kick_reason=Spilling too many items on the ground
anti_grief_jail_reason=You have spilled too many items on the ground, contact an admin
[danger_ore]
[danger_ores]
biters_disabled=Launching the first [item=satellite] has killed all the biters. Launch __1__ [item=satellite] to win the map.
win=Congratulations! The map has been won. Restart the map with /restart
satellite_launch=Launch another __1__ [item=satellite] to win the map.

View File

@ -26,7 +26,7 @@ return function(config)
win_satellite_count,
' satellites to win the map.'
}
game.print({'danger_ore.biters_disabled', win_satellite_count})
game.print({'danger_ores.biters_disabled', win_satellite_count})
Server.to_discord_bold(message)
end
@ -37,7 +37,7 @@ return function(config)
ShareGlobals.data.map_won = true
local message = 'Congratulations! The map has been won. Restart the map with /restart'
game.print({'danger_ore.win'})
game.print({'danger_ores.win'})
Server.to_discord_bold(message)
end
@ -48,7 +48,7 @@ return function(config)
end
local message = table.concat {'Launch another ', remaining_count, ' satellites to win the map.'}
game.print({'danger_ore.satellite_launch', remaining_count})
game.print({'danger_ores.satellite_launch', remaining_count})
Server.to_discord_bold(message)
end