From 546c2a3ca57a1f5e4bbbf1118bba4c0e912c4dec Mon Sep 17 00:00:00 2001 From: Bigjango13 Date: Thu, 9 Jun 2022 15:45:09 -0400 Subject: [PATCH] Change the visibility of _chat_enabled and _chat_queue_message. --- mods/src/chat/chat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/src/chat/chat.h b/mods/src/chat/chat.h index 07d4e9b..6cc44c0 100644 --- a/mods/src/chat/chat.h +++ b/mods/src/chat/chat.h @@ -9,9 +9,9 @@ void chat_open(); unsigned int chat_get_counter(); #endif // #ifndef MCPI_SERVER_MODE -__attribute__((visibility("internal"))) extern int _chat_enabled; +extern int _chat_enabled; #ifndef MCPI_SERVER_MODE -__attribute__((visibility("internal"))) void _chat_queue_message(char *message); +void _chat_queue_message(char *message); #endif // #ifndef MCPI_SERVER_MODE #ifdef __cplusplus -- 2.40.1