diff options
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/fabric.mod.json | 6 | ||||
-rw-r--r-- | src/main/resources/iceberg.mixins.json | 7 |
2 files changed, 8 insertions, 5 deletions
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index e365eea..13b9f03 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -17,7 +17,11 @@ "environment": "*", - "entrypoints": { }, + "entrypoints": { + "client": [ + "com.anthonyhilyard.iceberg.IcebergClient" + ] + }, "accessWidener": "iceberg.accesswidener", "mixins": [ "iceberg.mixins.json" diff --git a/src/main/resources/iceberg.mixins.json b/src/main/resources/iceberg.mixins.json index 25c3dd8..b5d3ac3 100644 --- a/src/main/resources/iceberg.mixins.json +++ b/src/main/resources/iceberg.mixins.json @@ -6,11 +6,10 @@ "EntityMixin", "PlayerAdvancementsMixin" ], - "server": [ - "ItemEntityMixin" - ], "client": [ - "ScreenMixin" + "ScreenMixin", + "ClientPacketListenerMixin", + "LivingEntityMixin" ], "injectors": { "defaultRequire": 1 |