mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
Don't clone location in PreCreatureSpawnEvent (#8790)
This commit is contained in:
parent
ec9dba85db
commit
567ff90111
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ index 0000000000000000000000000000000000000000..3ad231aa3206c8cfd5ec995249584ceb
|
||||||
+ private boolean shouldAbortSpawn;
|
+ private boolean shouldAbortSpawn;
|
||||||
+
|
+
|
||||||
+ public PreCreatureSpawnEvent(@NotNull Location location, @NotNull EntityType type, @NotNull CreatureSpawnEvent.SpawnReason reason) {
|
+ public PreCreatureSpawnEvent(@NotNull Location location, @NotNull EntityType type, @NotNull CreatureSpawnEvent.SpawnReason reason) {
|
||||||
+ this.location = Preconditions.checkNotNull(location, "Location may not be null").clone();
|
+ this.location = Preconditions.checkNotNull(location, "Location may not be null");
|
||||||
+ this.type = Preconditions.checkNotNull(type, "Type may not be null");
|
+ this.type = Preconditions.checkNotNull(type, "Type may not be null");
|
||||||
+ this.reason = Preconditions.checkNotNull(reason, "Reason may not be null");
|
+ this.reason = Preconditions.checkNotNull(reason, "Reason may not be null");
|
||||||
+ }
|
+ }
|
||||||
|
|
Loading…
Reference in a new issue