Skip to content

Commit

Permalink
Re categorized mixins into proper environments
Browse files Browse the repository at this point in the history
  • Loading branch information
UselessBullets committed Dec 16, 2023
1 parent 1ef2ac9 commit ae8d284
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package turniplabs.halplibe.mixin.mixins;


import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiIngameMenu;
import net.minecraft.client.gui.GuiScreen;
Expand Down
31 changes: 17 additions & 14 deletions src/main/resources/halplibe.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,33 +9,36 @@
"accessors.DimensionAccessor",
"accessors.EntityListAccessor",
"accessors.LanguageAccessor",
"accessors.RenderManagerAccessor",
"accessors.TileEntityAccessor",
"accessors.TileEntityRendererAccessor",
"mixins.BlockFireMixin",
"mixins.BlockSoundDispatcherMixin",
"mixins.EntityClientPlayerMPMixin",
"mixins.GuiIngameMenuMixin",
"mixins.I18nMixin",
"mixins.MinecraftMixin",
"mixins.RenderEngineMixin",
"mixins.RenderGlobalMixin",
"mixins.network.EntityTrackerEntryMixin",
"mixins.network.MinecraftServerMixin",
"mixins.network.NetClientHandlerMixin",
"mixins.network.NetworkManagerMixin",
"mixins.network.PacketMixin",
"mixins.registry.BlockMixin",
"mixins.registry.ItemMixin",
"mixins.registry.MinecraftServerMixin",
"mixins.version.NetClientHandlerMixin",
"mixins.version.NetHandlerMixin",
"mixins.version.NetLoginHandlerMixin"
"mixins.version.NetHandlerMixin"

],
"client": [
"accessors.RenderManagerAccessor",
"accessors.TileEntityRendererAccessor",
"mixins.BlockSoundDispatcherMixin",
"mixins.RenderGlobalMixin",
"mixins.RenderEngineMixin",
"mixins.EntityClientPlayerMPMixin",
"mixins.network.NetClientHandlerMixin",
"mixins.MinecraftMixin",
"mixins.network.MinecraftMixin",
"mixins.version.NetClientHandlerMixin",
"mixins.GuiIngameMenuMixin",
"mixins.registry.MinecraftMixin"
],
"server": [
"mixins.network.MinecraftServerMixin",
"mixins.registry.MinecraftServerMixin",
"mixins.version.NetLoginHandlerMixin"
],
"injectors": {
"defaultRequire": 1
}
Expand Down

0 comments on commit ae8d284

Please sign in to comment.