From 5dd063fbba6bde64806a7620541dc2d9bdf42871 Mon Sep 17 00:00:00 2001 From: Roman / Linnea Gräf Date: Sat, 4 Mar 2023 02:54:50 +0100 Subject: Replace all commands in NEU with a brigadier implementation (#599) --- src/main/resources/mixins.notenoughupdates.json | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/resources') diff --git a/src/main/resources/mixins.notenoughupdates.json b/src/main/resources/mixins.notenoughupdates.json index 8877aed8..8a8b10bc 100644 --- a/src/main/resources/mixins.notenoughupdates.json +++ b/src/main/resources/mixins.notenoughupdates.json @@ -5,6 +5,7 @@ "plugin": "io.github.moulberry.notenoughupdates.envcheck.NEUMixinConfigPlugin", "compatibilityLevel": "JAVA_8", "mixins": [ + "AccessorCommandHandler", "AccessorEntityAgeable", "AccessorEntityArmorStand", "AccessorGuiPlayerTabOverlay", -- cgit From fd063280c717e974bc9ac35f730e61b1be9de856 Mon Sep 17 00:00:00 2001 From: NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> Date: Sun, 12 Mar 2023 02:05:14 +1100 Subject: Custom items in /neucustomize (#609) * should work :tm:, probably breaks other mods, needs to be added to /neurename gui * Improved compatibility with other mods probably * Added a text box to /neurename * Polish up everything * Fix skulls have durability bar * Should be everything finished * add support for metadata and skulls rendering properly * Made gui look nice * fix leather not being coloured while moving it * Fixed normal helmets not rendering * fix pumpkin not showing overlay * Fixed skulls showing as null by default on most other items * added support to randomize the subitems with ":?" * Add support for custom armour besides the head * move custom armour function * code dupe glitch * A small sign in the permanent fight against duplication of code. * clear cache on world unload --------- Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- src/main/resources/mixins.notenoughupdates.json | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/resources') diff --git a/src/main/resources/mixins.notenoughupdates.json b/src/main/resources/mixins.notenoughupdates.json index 8a8b10bc..eb04957b 100644 --- a/src/main/resources/mixins.notenoughupdates.json +++ b/src/main/resources/mixins.notenoughupdates.json @@ -22,6 +22,7 @@ "MixinGuiChest", "MixinGuiContainer", "MixinGuiIngame", + "MixinGuiIngameForge", "MixinGuiInventory", "MixinGuiScreen", "MixinGuiUtils", -- cgit From 5f147d6adbe9898239a0cb86e4daaa74c9e4c08a Mon Sep 17 00:00:00 2001 From: Vixid <52578495+VixidDev@users.noreply.github.com> Date: Sat, 11 Mar 2023 23:51:41 +0000 Subject: Dynamic Light Items (#646) Co-authored-by: Vixid <52578495+Vixid1@users.noreply.github.com> --- .../resources/assets/notenoughupdates/disabled_button.png | Bin 0 -> 161 bytes .../notenoughupdates/dynamic_light_items_editor.png | Bin 0 -> 439 bytes .../resources/assets/notenoughupdates/enabled_button.png | Bin 0 -> 158 bytes src/main/resources/mixins.notenoughupdates.json | 1 + 4 files changed, 1 insertion(+) create mode 100644 src/main/resources/assets/notenoughupdates/disabled_button.png create mode 100644 src/main/resources/assets/notenoughupdates/dynamic_light_items_editor.png create mode 100644 src/main/resources/assets/notenoughupdates/enabled_button.png (limited to 'src/main/resources') diff --git a/src/main/resources/assets/notenoughupdates/disabled_button.png b/src/main/resources/assets/notenoughupdates/disabled_button.png new file mode 100644 index 00000000..4283fbf3 Binary files /dev/null and b/src/main/resources/assets/notenoughupdates/disabled_button.png differ diff --git a/src/main/resources/assets/notenoughupdates/dynamic_light_items_editor.png b/src/main/resources/assets/notenoughupdates/dynamic_light_items_editor.png new file mode 100644 index 00000000..399924c1 Binary files /dev/null and b/src/main/resources/assets/notenoughupdates/dynamic_light_items_editor.png differ diff --git a/src/main/resources/assets/notenoughupdates/enabled_button.png b/src/main/resources/assets/notenoughupdates/enabled_button.png new file mode 100644 index 00000000..a0f8d7fc Binary files /dev/null and b/src/main/resources/assets/notenoughupdates/enabled_button.png differ diff --git a/src/main/resources/mixins.notenoughupdates.json b/src/main/resources/mixins.notenoughupdates.json index eb04957b..279d5cef 100644 --- a/src/main/resources/mixins.notenoughupdates.json +++ b/src/main/resources/mixins.notenoughupdates.json @@ -37,6 +37,7 @@ "MixinMinecraft", "MixinMouseHelper", "MixinNetHandlerPlayClient", + "MixinOFDynamicLights", "MixinPlayerControllerMP", "MixinRender", "MixinRendererLivingEntity", -- cgit