Check for less than 1

This commit is contained in:
Trent Hensler 2018-03-01 23:12:42 -08:00
parent 10f2e4a977
commit f8774bab23
1 changed files with 1 additions and 1 deletions

View File

@ -922,7 +922,7 @@ public abstract class MemoryFPlayer implements FPlayer {
}
public int getMapHeight() {
if (this.mapHeight == 0) {
if (this.mapHeight < 1) {
this.mapHeight = Conf.mapHeight;
}