diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-07-25 07:04:21 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-07-25 07:04:21 +1000 |
commit | 0634ae78fc20194ab594ca61a26b8bf8ac94c564 (patch) | |
tree | 06efdb76858b2016687f93d13954e3710bff6c3e /source/game/StarCommandProcessor.cpp | |
parent | 6dd49fb69ac6c3d7db78f7edd7d9ccd445e674d5 (diff) |
Object::init - avoid throwing if 'scripts' parameter isn't an array for some reason
Diffstat (limited to 'source/game/StarCommandProcessor.cpp')
-rw-r--r-- | source/game/StarCommandProcessor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/StarCommandProcessor.cpp b/source/game/StarCommandProcessor.cpp index 46222ce..14413b4 100644 --- a/source/game/StarCommandProcessor.cpp +++ b/source/game/StarCommandProcessor.cpp @@ -209,7 +209,7 @@ String CommandProcessor::timewarp(ConnectionId connectionId, String const& argum return "Great Scott! We can't go back in time!"; m_universe->universeClock()->adjustTime(time); - return strf("It's just a jump to the {}...", time > 0.0 ? "left" : "right"); + return time > 0.0 ? "It's just a jump to the left..." : "And then a step to the right..."; } catch (BadLexicalCast const&) { return strf("Could not parse the argument {} as a time adjustment", arguments[0]); } |