3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 14:20:05 +02:00

Fix compile error in Transforms caused by merge.

Dieser Commit ist enthalten in:
sk89q 2014-07-02 02:55:02 -07:00
Ursprung 83e141bfb0
Commit 9e8b2d1875

Datei anzeigen

@ -43,7 +43,7 @@ public final class Transforms {
public static Location transform(Location location, Transform transform) {
checkNotNull(location);
checkNotNull(transform);
return new Location(location.getWorld(), transform.apply(location.toVector()), location.getDirection());
return new Location(location.getExtent(), transform.apply(location.toVector()), location.getDirection());
}
}