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

Fixed UnderOverlayMask.

Dieser Commit ist enthalten in:
TomyLobo 2013-10-29 08:38:16 +01:00
Ursprung ae6e59e8d0
Commit 6e3d8395df

Datei anzeigen

@ -68,7 +68,6 @@ public class UnderOverlayMask implements Mask {
@Override
public boolean matches(EditSession editSession, Vector pos) {
return mask.matches(editSession, pos.add(0, yMod, 0));
return !mask.matches(editSession, pos) && mask.matches(editSession, pos.add(0, yMod, 0));
}
}