Use short map names

This commit is contained in:
Anuken
2019-10-22 19:37:03 -04:00
parent b98b9a98e3
commit 1f5e639fb2
3 changed files with 3 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ public class MapGenerator extends Generator{
return this;
}
public void removePrefix(String name){
this.mapName = name.substring(name.length() + 1);
this.mapName = this.mapName.substring(name.length() + 1);
}
{