From 2c592090b9448203559e01326bc2c2d995b15d53 Mon Sep 17 00:00:00 2001 From: Wyvest <45589059+Wyvest@users.noreply.github.com> Date: Sat, 14 May 2022 00:59:25 -0700 Subject: de-minecraftify a lot of things + use mixin instead of reflection (#11) * de-minecraftify * use mixin instead of reflection * lol --- src/main/resources/mixins.oneconfig.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/main/resources/mixins.oneconfig.json (limited to 'src/main/resources/mixins.oneconfig.json') diff --git a/src/main/resources/mixins.oneconfig.json b/src/main/resources/mixins.oneconfig.json new file mode 100644 index 0000000..39015ab --- /dev/null +++ b/src/main/resources/mixins.oneconfig.json @@ -0,0 +1,13 @@ +{ + "compatibilityLevel": "JAVA_8", + "minVersion": "0.7", + "package": "cc.polyfrost.oneconfig.mixin", + "refmap": "mixins.oneconfig.refmap.json", + "injectors": { + "maxShiftBy": 5 + }, + "client": [ + "ShaderGroupAccessor" + ], + "verbose": true +} \ No newline at end of file -- cgit