Update to MC 1.14 / Fabric
This commit is contained in:
39
src/main/resources/fabric.mod.json
Executable file
39
src/main/resources/fabric.mod.json
Executable 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"
|
||||
}
|
||||
}
|
||||
@@ -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",
|
||||
|
||||
@@ -6,11 +6,11 @@
|
||||
"client": [
|
||||
"EntityLivingBaseAccessor",
|
||||
"IntegratedServerAccessor",
|
||||
"NetworkManagerAccessor",
|
||||
"SPacketSpawnMobAccessor",
|
||||
"SPacketSpawnPlayerAccessor",
|
||||
//#if MC>=11300
|
||||
"MixinDownloadingPackFinder",
|
||||
"MixinKeyboardListener",
|
||||
"MixinMouseHelper",
|
||||
//#endif
|
||||
//#if MC>=10904
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
//$$ "MixinEffectRenderer",
|
||||
//$$ "MixinRendererLivingEntity",
|
||||
//#endif
|
||||
"MixinCamera",
|
||||
"MixinEntityRenderer",
|
||||
//#if MC>=11300
|
||||
"MixinFogRenderer",
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user