From a2da72c94047c3650551912693381dcef5791cb5 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Fri, 2 Oct 2020 13:54:10 -0400 Subject: [PATCH] Fix Joining Servers --- mods/src/extra.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mods/src/extra.c b/mods/src/extra.c index 6b318ab0..18c7bd9e 100644 --- a/mods/src/extra.c +++ b/mods/src/extra.c @@ -149,4 +149,8 @@ __attribute__((constructor)) static void init() { unsigned char patch_data_8[4] = {0x01, 0x30, 0xa0, 0xe3}; patch((void *) 0x49fcc, patch_data_8); } + + // Allow Connecting To Non-Pi Servers + unsigned char patch_data_9[4] = {0x0f, 0x00, 0x00, 0xea}; + patch((void *) 0x6dc70, patch_data_9); }