1.2.9
SorceryCraft/pipeline/head This commit looks good Details

Fix Dedicated Server Crash
This commit is contained in:
TheBrokenRail 2020-05-24 16:55:23 -04:00
parent 700b970a04
commit 3f06723a1f
3 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
# Changelog # Changelog
**1.2.9**
* Fix Dedicated Server Crash
**1.2.8** **1.2.8**
* Register Loot Table Function * Register Loot Table Function

View File

@ -10,7 +10,7 @@ org.gradle.jvmargs = -Xmx1G
fabric_loader_version = 0.8.2+build.194 fabric_loader_version = 0.8.2+build.194
# Mod Properties # Mod Properties
mod_version = 1.2.8 mod_version = 1.2.9
maven_group = com.thebrokenrail maven_group = com.thebrokenrail
archives_base_name = sorcerycraft archives_base_name = sorcerycraft

View File

@ -3,11 +3,11 @@
"package": "com.thebrokenrail.sorcerycraft.mixin", "package": "com.thebrokenrail.sorcerycraft.mixin",
"compatibilityLevel": "JAVA_8", "compatibilityLevel": "JAVA_8",
"client": [ "client": [
"MixinClientPlayNetworkHandler" "MixinClientPlayNetworkHandler",
"MixinClientPlayerEntity"
], ],
"mixins": [ "mixins": [
"CriteriaRegistryHook", "CriteriaRegistryHook",
"MixinClientPlayerEntity",
"MixinPlayerEntity", "MixinPlayerEntity",
"MixinServerPlayerEntity" "MixinServerPlayerEntity"
], ],