This commit is contained in:
Anuken
2020-09-29 11:53:45 -04:00
parent 521ca1aea4
commit c3274622b2
4 changed files with 7 additions and 4 deletions

View File

@@ -417,7 +417,7 @@ public class MapGenerateDialog extends BaseDialog{
public void set(Block floor, Block wall, Block ore, Team team){
this.floor = floor.id;
this.block = wall.id;
this.ore = ore.id;
this.ore = floor.asFloor().isLiquid ? 0 : ore.id;
this.team = (byte)team.id;
}