Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-05 11:00:05 +01:00
Fixed UnderOverlayMask.
Dieser Commit ist enthalten in:
Ursprung
ae6e59e8d0
Commit
6e3d8395df
@ -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));
|
||||
}
|
||||
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren