3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-05 11:00:05 +01:00

/green now fails a bit less.

Dieser Commit ist enthalten in:
TomyLobo 2011-08-20 15:17:29 +02:00
Ursprung 3c92bd9451
Commit 2893438f8e

Datei anzeigen

@ -2075,15 +2075,15 @@ public class EditSession {
Vector pt = new Vector(x, y, z);
int id = getBlockType(pt);
if (id == 0)
if (id == 0 || id == BlockID.SNOW)
continue;
if (id == BlockID.DIRT) {
if (setBlock(pt, grass)) {
++affected;
}
break;
}
break;
}
}
}