From dea9fea67f157405de2c15e74835ae64decf89ea Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 24 Mar 2024 21:41:52 +0100 Subject: [PATCH] mention custom mode in watermark --- hud.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hud.cpp b/hud.cpp index 07b80d01..8c1ec59a 100644 --- a/hud.cpp +++ b/hud.cpp @@ -708,9 +708,10 @@ EX void drawStats() { if(bow::weapon && bow::style == bow::cbBull) vers += " b/bull"; if(bow::weapon && bow::style == bow::cbGeodesic) vers += " b/geo"; if(land_structure != default_land_structure()) - vers += land_structure_name(true); + vers += " " + land_structure_name(true); if(princess::challenge) vers += " Princess"; if(randomPatternsMode) vers += " RPM"; + if(use_custom_land_list) vers += " custom"; if(geometry != gNormal || !BITRUNCATED) vers = vers + " " + full_geometry_name();