diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-07-26 14:00:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-26 22:00:45 +1000 |
| commit | 5bcf7cc19df3ff59385b1de06cc3e2e827f5e2b6 (patch) | |
| tree | ed52c6dbb61df92cd6fe7e9cb94a753ba1ca2a15 /src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java | |
| parent | 01ce1186f271be0fc9cd65d759bc3905392c4ca8 (diff) | |
| download | notenoughupdates-5bcf7cc19df3ff59385b1de06cc3e2e827f5e2b6.tar.gz notenoughupdates-5bcf7cc19df3ff59385b1de06cc3e2e827f5e2b6.tar.bz2 notenoughupdates-5bcf7cc19df3ff59385b1de06cc3e2e827f5e2b6.zip | |
Added power stone feature (#194)
Co-authored-by: Lorenz <ESs95s3P5z8Pheb>
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java b/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java index 8c23aa60..6bf6d86b 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java @@ -49,6 +49,7 @@ import io.github.moulberry.notenoughupdates.miscfeatures.NPCRetexturing; import io.github.moulberry.notenoughupdates.miscfeatures.Navigation; import io.github.moulberry.notenoughupdates.miscfeatures.NullzeeSphere; import io.github.moulberry.notenoughupdates.miscfeatures.PetInfoOverlay; +import io.github.moulberry.notenoughupdates.miscfeatures.PowerStoneStatsDisplay; import io.github.moulberry.notenoughupdates.miscfeatures.SlotLocking; import io.github.moulberry.notenoughupdates.miscfeatures.StorageManager; import io.github.moulberry.notenoughupdates.miscfeatures.SunTzu; @@ -287,6 +288,7 @@ public class NotEnoughUpdates { MinecraftForge.EVENT_BUS.register(new OldAnimationChecker()); MinecraftForge.EVENT_BUS.register(new SignCalculator()); MinecraftForge.EVENT_BUS.register(TrophyRewardOverlay.getInstance()); + MinecraftForge.EVENT_BUS.register(PowerStoneStatsDisplay.getInstance()); MinecraftForge.EVENT_BUS.register(navigation); if (Minecraft.getMinecraft().getResourceManager() instanceof IReloadableResourceManager) { |
