From 0d2bdfca99b2c43c6fe0f68fbd1fe412a9f61f6d Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Wed, 14 Aug 2019 02:44:40 -0400 Subject: [PATCH] - fix typo --- src/maploader/udmf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/maploader/udmf.cpp b/src/maploader/udmf.cpp index a1caea6598..8226f525d9 100644 --- a/src/maploader/udmf.cpp +++ b/src/maploader/udmf.cpp @@ -252,7 +252,7 @@ double UDMFParserBase::CheckCoordinate(const char *key) } if (sc.Float < -32768 || sc.Float > 32768) { - sc.ScriptMessage("Value %f out of range for a coordinate '%s'. Valid range is ]-32768 .. 32768]", sc.Float, key); + sc.ScriptMessage("Value %f out of range for a coordinate '%s'. Valid range is [-32768 .. 32768]", sc.Float, key); BadCoordinates = true; // If this happens the map must not allowed to be started. } return sc.Float;