|
From: <cn...@us...> - 2021-12-09 20:59:10
|
Revision: 1241
http://sourceforge.net/p/seq/svn/1241
Author: cn187
Date: 2021-12-09 20:59:07 +0000 (Thu, 09 Dec 2021)
Log Message:
-----------
Ignore _int suffix on zone shortnames
Modified Paths:
--------------
showeq/trunk/src/zonemgr.cpp
Modified: showeq/trunk/src/zonemgr.cpp
===================================================================
--- showeq/trunk/src/zonemgr.cpp 2021-12-09 20:59:01 UTC (rev 1240)
+++ showeq/trunk/src/zonemgr.cpp 2021-12-09 20:59:07 UTC (rev 1241)
@@ -645,6 +645,11 @@
// ToV DZs for sure, but there may be others.
QRegExp rz("_progress$");
m_shortZoneName.replace(rz, "");
+
+ // some zones are getting a suffix of _int (particularly guild halls)
+ // which causes failure to load maps.
+ QRegExp ry("_int$");
+ m_shortZoneName.replace(ry, "");
}
m_longZoneName = zoneNew->longName;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|