geforkt von Mirrors/FastAsyncWorldEdit
Fix compile error in Transforms caused by merge.
Dieser Commit ist enthalten in:
Ursprung
83e141bfb0
Commit
9e8b2d1875
@ -43,7 +43,7 @@ public final class Transforms {
|
|||||||
public static Location transform(Location location, Transform transform) {
|
public static Location transform(Location location, Transform transform) {
|
||||||
checkNotNull(location);
|
checkNotNull(location);
|
||||||
checkNotNull(transform);
|
checkNotNull(transform);
|
||||||
return new Location(location.getWorld(), transform.apply(location.toVector()), location.getDirection());
|
return new Location(location.getExtent(), transform.apply(location.toVector()), location.getDirection());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren