Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/game/StarDungeonGenerator.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/source/game/StarDungeonGenerator.cpp b/source/game/StarDungeonGenerator.cpp
index 96285df..8b2c9c2 100644
--- a/source/game/StarDungeonGenerator.cpp
+++ b/source/game/StarDungeonGenerator.cpp
@@ -654,12 +654,10 @@ namespace Dungeon {
});
ground[1] = max(ground[1], liquid[1]);
if (air.y() < ground.y())
- throw DungeonException("Invalid ground vs air contraint. Ground at: " + toString(ground.y()) + " Air at: "
- + toString(air.y())
- + " Pixels: highest ground:"
- + toString(ground)
- + " lowest air:"
- + toString(air));
+ throw DungeonException::format(
+ "Invalid ground vs air contraint! Ground {} can't be above air {}"
+ " (try moving your 'require there be air here' anchors above any other 'require there be (something) here' anchors.)",
+ ground, air);
return air.y();
}