diff options
Diffstat (limited to 'source/game/scripting/StarWorldLuaBindings.cpp')
-rw-r--r-- | source/game/scripting/StarWorldLuaBindings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/scripting/StarWorldLuaBindings.cpp b/source/game/scripting/StarWorldLuaBindings.cpp index 612ba7e..ca0ebb2 100644 --- a/source/game/scripting/StarWorldLuaBindings.cpp +++ b/source/game/scripting/StarWorldLuaBindings.cpp @@ -175,7 +175,7 @@ namespace LuaBindings { } else if (*order == "random") { Random::shuffle(entities); } else { - throw StarException(strf("Unsupported query order %s", *order)); + throw StarException(strf("Unsupported query order %s", order->ptr())); } } |