Skip to content

Commit 7507099

Browse files
authored
Merge pull request #3341 from Multiverse/api/unloadedworldlocation-final
Make UnloadedWorldLocation non-final to allow extending
2 parents a1081c1 + 29b58b1 commit 7507099

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/mvplugins/multiverse/core/world/location/UnloadedWorldLocation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* This is useful to store location with world that may not be loaded yet or have been unloaded at some point.
2323
*/
2424
@SerializableAs("UnloadedWorldLocation")
25-
public final class UnloadedWorldLocation extends Location {
25+
public class UnloadedWorldLocation extends Location {
2626

2727
public static UnloadedWorldLocation fromLocation(@NotNull Location location) {
2828
return new UnloadedWorldLocation(location.getWorld(), location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch());

0 commit comments

Comments
 (0)