-
-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix AsyncStructureSpawnEvent crash (#1457)
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
...on/src/main/java/io/izzel/arclight/common/mixin/bukkit/AsyncStructureSpawnEventMixin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package io.izzel.arclight.common.mixin.bukkit; | ||
|
||
import org.bukkit.Bukkit; | ||
import org.bukkit.event.world.AsyncStructureSpawnEvent; | ||
import org.spongepowered.asm.mixin.Mixin; | ||
import org.spongepowered.asm.mixin.injection.At; | ||
import org.spongepowered.asm.mixin.injection.ModifyArg; | ||
|
||
@Mixin(value = AsyncStructureSpawnEvent.class, remap = false) | ||
public class AsyncStructureSpawnEventMixin { | ||
|
||
@ModifyArg(method = "<init>", at = @At(value = "INVOKE", target = "Lorg/bukkit/event/world/WorldEvent;<init>(Lorg/bukkit/World;Z)V")) | ||
private static boolean arclight$async(boolean async) { | ||
return !Bukkit.isPrimaryThread(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters