aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/djtheredstoner/perspectivemod/asm/hooks/MinecraftHook.java
diff options
context:
space:
mode:
authorDJtheRedstoner <52044242+DJtheRedstoner@users.noreply.github.com>2021-08-20 17:17:16 -0400
committerDJtheRedstoner <52044242+DJtheRedstoner@users.noreply.github.com>2021-08-20 17:17:16 -0400
commit12888a9eb0469a5462e497a29eb4d3d15bb48f3c (patch)
tree0c0ab075cfefd3fca76e7d35704f7ba20ae961f9 /src/main/java/me/djtheredstoner/perspectivemod/asm/hooks/MinecraftHook.java
parent28fb656d8b285f3da2227dd859735392902a31ef (diff)
downloadPerspectiveModv4-12888a9eb0469a5462e497a29eb4d3d15bb48f3c.tar.gz
PerspectiveModv4-12888a9eb0469a5462e497a29eb4d3d15bb48f3c.tar.bz2
PerspectiveModv4-12888a9eb0469a5462e497a29eb4d3d15bb48f3c.zip
this is why we can't have nice things
Diffstat (limited to 'src/main/java/me/djtheredstoner/perspectivemod/asm/hooks/MinecraftHook.java')
-rw-r--r--src/main/java/me/djtheredstoner/perspectivemod/asm/hooks/MinecraftHook.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/main/java/me/djtheredstoner/perspectivemod/asm/hooks/MinecraftHook.java b/src/main/java/me/djtheredstoner/perspectivemod/asm/hooks/MinecraftHook.java
deleted file mode 100644
index 31914f8..0000000
--- a/src/main/java/me/djtheredstoner/perspectivemod/asm/hooks/MinecraftHook.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package me.djtheredstoner.perspectivemod.asm.hooks;
-
-import me.djtheredstoner.perspectivemod.PerspectiveMod;
-import net.minecraft.client.settings.GameSettings;
-
-public class MinecraftHook {
-
- public static void thirdPersonHook(GameSettings gameSettings, int value) {
- if(PerspectiveMod.instance.perspectiveToggled) {
- PerspectiveMod.instance.resetPerspective();
- } else {
- gameSettings.thirdPersonView = value;
- }
- }
-
-}