From 709de17558729dfc2c3e4e91e9161eb22054f81d Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Wed, 23 Mar 2022 19:26:49 -0400 Subject: [PATCH] Fix Nether Reactor With Creative Restrictions Disabled --- mods/src/creative/creative.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mods/src/creative/creative.cpp b/mods/src/creative/creative.cpp index abcb307..e506073 100644 --- a/mods/src/creative/creative.cpp +++ b/mods/src/creative/creative.cpp @@ -95,6 +95,8 @@ void init_creative() { // Maximize Creative Inventory Stack Size unsigned char maximize_stack_patch[4] = {0xff, 0xc0, 0xa0, 0xe3}; // "mov r12, 0xff" patch((void *) 0x8e104, maximize_stack_patch); + // Allow Nether Reactor + patch((void *) 0xc0290, nop_patch); // Disable Other Restrictions is_restricted = 0; }