From 5b2e4bc988d7d4a27a9d2089067543bb2ea7d2ac Mon Sep 17 00:00:00 2001 From: ilmikko Date: Sat, 29 Mar 2025 19:14:28 +0100 Subject: [PATCH] comment fix --- src/town_gui.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/town_gui.cpp b/src/town_gui.cpp index 40de5d8d06..97ef36a287 100644 --- a/src/town_gui.cpp +++ b/src/town_gui.cpp @@ -382,7 +382,8 @@ public: NWidgetViewport *nvp = this->GetWidget(WID_TV_VIEWPORT); nvp->InitializeViewport(this, this->town->xy, ScaleZoomGUI(ZOOM_LVL_TOWN)); - /* disable renaming town in network games if you are not the server */ + /* disable renaming town in network games if you are not the server, unless + * town renaming is explicitly allowed */ bool renaming_disabled = _networking && !_network_server; if (_settings_game.economy.town_renaming_allowed) { renaming_disabled = false;