Fix single map render message on single map render of day/night worlds
This commit is contained in:
parent
e3721ea292
commit
4197c17019
1 changed files with 9 additions and 6 deletions
|
|
@ -268,12 +268,15 @@ public class MapManager {
|
||||||
activemaplist = map.getMapNamesSharingRender(world);
|
activemaplist = map.getMapNamesSharingRender(world);
|
||||||
/* Build active map list */
|
/* Build active map list */
|
||||||
activemaps = "";
|
activemaps = "";
|
||||||
for(String n : activemaplist) {
|
if(mapname != null) {
|
||||||
if((mapname != null) && (!mapname.equals(n)))
|
activemaps = mapname;
|
||||||
continue;
|
}
|
||||||
if(activemaps.length() > 0)
|
else {
|
||||||
activemaps += ",";
|
for(String n : activemaplist) {
|
||||||
activemaps += n;
|
if(activemaps.length() > 0)
|
||||||
|
activemaps += ",";
|
||||||
|
activemaps += n;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/* Mark all the concurrently rendering maps rendered */
|
/* Mark all the concurrently rendering maps rendered */
|
||||||
renderedmaps.addAll(map.getMapsSharingRender(world));
|
renderedmaps.addAll(map.getMapsSharingRender(world));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue