From ceeed2d93cd94a549b5c7789518eedd2c15fc962 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Mon, 11 Dec 2023 20:31:12 -0500 Subject: [PATCH] Remove direct connection check on command --- src/dev/chat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dev/chat.c b/src/dev/chat.c index 61386c542..f4199a1d7 100644 --- a/src/dev/chat.c +++ b/src/dev/chat.c @@ -22,7 +22,7 @@ bool exec_dev_chat_command(char* command) { return true; } - if (gNetworkSystem == &gNetworkSystemSocket && str_starts_with("/warp ", command)) { + if (str_starts_with("/warp ", command)) { static const struct { const char *name; s32 num; } sLevelNumByName[] = { #undef STUB_LEVEL #undef DEFINE_LEVEL