Update to MC 1.14 / Fabric

This commit is contained in:
Jonas Herzig
2019-05-04 14:37:00 +02:00
parent 17fe5b345f
commit 3d009e45c7
151 changed files with 3963 additions and 1455 deletions

View File

@@ -0,0 +1,39 @@
{
"schemaVersion": 1,
"id": "replaymod",
"version": "${version}",
"name": "Replay Mod",
"description": "A Mod which allows you to record, replay and share your Minecraft experience.",
"authors": [
"CrushedPixel",
"johni0702"
],
"contact": {
"homepage": "https://replaymod.com/",
"sources": "https://github.com/ReplayMod/ReplayMod"
},
"license": "GPL-3.0-or-later",
"icon": "replaymod_logo.png",
"environment": "client",
"entrypoints": {
"client": [
"com.replaymod.core.ReplayMod"
]
},
"mixins": [
"mixins.core.replaymod.json",
"mixins.extras.playeroverview.replaymod.json",
"mixins.recording.replaymod.json",
"mixins.render.blend.replaymod.json",
"mixins.render.replaymod.json",
"mixins.replay.replaymod.json"
],
"requires": {
"fabricloader": ">=0.4.0",
"fabric": ">=0.2.0"
}
}

View File

@@ -4,11 +4,22 @@
"mixins": [],
"server": [],
"client": [
//#if MC>=11400
//$$ "AbstractButtonWidgetAccessor",
//$$ "MixinGameRenderer",
//$$ "MixinScreen",
//$$ "MixinModResourcePackUtil",
//$$ "MixinMouseListener",
//#endif
//#if MC>=11300
"MixinKeyboardListener",
"MixinMinecraft",
//#endif
"GuiMainMenuAccessor",
"GuiScreenAccessor",
"KeyBindingAccessor",
"MinecraftAccessor",
"TimerAccessor",
"MixinMinecraft"
"TimerAccessor"
],
"compatibilityLevel": "JAVA_8",
"minVersion": "0.6.11",

View File

@@ -6,11 +6,11 @@
"client": [
"EntityLivingBaseAccessor",
"IntegratedServerAccessor",
"NetworkManagerAccessor",
"SPacketSpawnMobAccessor",
"SPacketSpawnPlayerAccessor",
//#if MC>=11300
"MixinDownloadingPackFinder",
"MixinKeyboardListener",
"MixinMouseHelper",
//#endif
//#if MC>=10904

View File

@@ -17,6 +17,7 @@
//$$ "MixinEffectRenderer",
//$$ "MixinRendererLivingEntity",
//#endif
"MixinCamera",
"MixinEntityRenderer",
//#if MC>=11300
"MixinFogRenderer",

View File

@@ -4,6 +4,10 @@
"mixins": [],
"server": [],
"client": [
//#if MC>=11400
//$$ "MixinCamera",
//$$ "MixinInGameHud",
//#endif
"EntityLivingBaseAccessor",
"EntityPlayerAccessor",
"FirstPersonRendererAccessor",
@@ -12,8 +16,13 @@
//#endif
//#if MC>=10800
"MixinGuiSpectator",
//#if MC>=11300
"MixinKeyboardListener",
//#endif
"MixinRenderArrow",
//#if MC<11400
"MixinRenderManager",
//#endif
"MixinViewFrustum",
//#endif
"MixinPlayerControllerMP",