diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-06-15 10:30:18 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-06-15 10:30:18 +0200 |
commit | eb1ffdbfabf00f7ef4caf12a7a309eac9af464c8 (patch) | |
tree | b909c4cf2839b5e1bc2fe3e0a17383b4c6c3a536 /src/main/java/at | |
parent | 5e963db0460900a1864db920a759e3d1ebe9a7b9 (diff) | |
download | skyhanni-eb1ffdbfabf00f7ef4caf12a7a309eac9af464c8.tar.gz skyhanni-eb1ffdbfabf00f7ef4caf12a7a309eac9af464c8.tar.bz2 skyhanni-eb1ffdbfabf00f7ef4caf12a7a309eac9af464c8.zip |
Fixed typo
Diffstat (limited to 'src/main/java/at')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/inventory/SkyBlockLevelGuideHelper.kt (renamed from src/main/java/at/hannibal2/skyhanni/features/inventory/SkyBLockLevelGuideHelper.kt) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt index 43560f616..4580fd706 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.kt @@ -221,7 +221,7 @@ class SkyHanniMod { loadModule(BarnFishingTimer()) loadModule(CrimsonIsleReputationHelper(this)) loadModule(SharkFishCounter()) - loadModule(SkyBLockLevelGuideHelper()) + loadModule(SkyBlockLevelGuideHelper()) loadModule(OdgerWaypoint()) loadModule(TiaRelayHelper()) loadModule(TiaRelayWaypoints()) diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/SkyBLockLevelGuideHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/SkyBlockLevelGuideHelper.kt index 063f17612..60c1a28de 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/inventory/SkyBLockLevelGuideHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/SkyBlockLevelGuideHelper.kt @@ -11,7 +11,7 @@ import net.minecraft.client.gui.inventory.GuiChest import net.minecraft.inventory.ContainerChest import net.minecraftforge.fml.common.eventhandler.SubscribeEvent -class SkyBLockLevelGuideHelper { +class SkyBlockLevelGuideHelper { @SubscribeEvent fun onBackgroundDrawn(event: GuiContainerEvent.BackgroundDrawnEvent) { |