Bugfixes / Allow placing blocks in shallow liquids

This commit is contained in:
Anuken
2019-03-21 10:16:37 -04:00
parent 4cb92cdb06
commit 8f5f27755d
10 changed files with 40 additions and 33 deletions

View File

@@ -198,7 +198,7 @@ public class ServerControl implements ApplicationListener{
if(lastTask != null) lastTask.cancel();
Map result = world.maps.all().find(map -> map.name().equalsIgnoreCase(arg[0]));
Map result = world.maps.all().find(map -> map.name().equalsIgnoreCase(arg[0].replace('_', ' ')));
if(result == null){
err("No map with name &y'{0}'&lr found.", arg[0]);