summaryrefslogtreecommitdiff
path: root/src/main/java/com/keuin/ohmyvanillamc/mixin/DisablePhantomSpawning.java
diff options
context:
space:
mode:
authorKeuin <[email protected]>2020-12-28 22:53:31 +0800
committerKeuin <[email protected]>2020-12-28 22:53:31 +0800
commit4dad5fc27145593c14425b3e673b924155903585 (patch)
tree3573b6ddb9170126d47f75a10b91c140c6fd9e98 /src/main/java/com/keuin/ohmyvanillamc/mixin/DisablePhantomSpawning.java
parentf287ea9dbb54b96c15f441b7f72e7d6527704ded (diff)
Version 1.3.0: add switches for all disable features. Fixed the vanilla bug that the entity trackers sometimes spam in the console.
Diffstat (limited to 'src/main/java/com/keuin/ohmyvanillamc/mixin/DisablePhantomSpawning.java')
-rw-r--r--src/main/java/com/keuin/ohmyvanillamc/mixin/DisablePhantomSpawning.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/com/keuin/ohmyvanillamc/mixin/DisablePhantomSpawning.java b/src/main/java/com/keuin/ohmyvanillamc/mixin/DisablePhantomSpawning.java
new file mode 100644
index 0000000..d5788c7
--- /dev/null
+++ b/src/main/java/com/keuin/ohmyvanillamc/mixin/DisablePhantomSpawning.java
@@ -0,0 +1,22 @@
+package com.keuin.ohmyvanillamc.mixin;
+
+import com.keuin.ohmyvanillamc.OhMyVanillaMinecraft;
+import net.minecraft.server.world.ServerWorld;
+import net.minecraft.world.gen.PhantomSpawner;
+import org.spongepowered.asm.mixin.Mixin;
+import org.spongepowered.asm.mixin.injection.At;
+import org.spongepowered.asm.mixin.injection.Inject;
+import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
+
+@Mixin(PhantomSpawner.class)
+public class DisablePhantomSpawning {
+ /**
+ * Disable phantom spawning
+ * @author trueKeuin
+ */
+ @Inject(method = "spawn", at = @At("HEAD"), cancellable = true)
+ public void spawn(ServerWorld serverWorld, boolean spawnMonsters, boolean spawnAnimals, CallbackInfo ci) {
+ if (OhMyVanillaMinecraft.disablePhantomSpawning)
+ ci.cancel();
+ }
+}