summaryrefslogtreecommitdiff
path: root/commands.c
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2023-11-26 02:19:27 -0500
committerTest_User <hax@andrewyu.org>2023-11-26 02:19:27 -0500
commit16049194444f9acc27b9ed6b8de6b39651c5a8fd (patch)
tree968f2a253b8093b454f58a5491a62e2515161941 /commands.c
parentf79a5dbfbadf78baf5683eede02a8454e403f58e (diff)
downloadcoupserv-16049194444f9acc27b9ed6b8de6b39651c5a8fd.tar.gz
coupserv-16049194444f9acc27b9ed6b8de6b39651c5a8fd.zip
Fix memory errors, disable spam command
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands.c b/commands.c
index 33ffd21..f325457 100644
--- a/commands.c
+++ b/commands.c
@@ -243,7 +243,7 @@ int init_user_commands(void) {
set_table_index(&user_commands, STRING("sus"), &sus_command_def);
set_table_index(&user_commands, STRING("cr"), &cr_command_def);
set_table_index(&user_commands, STRING("help"), &help_command_def);
- set_table_index(&user_commands, STRING("spam"), &spam_command_def);
+// set_table_index(&user_commands, STRING("spam"), &spam_command_def);
set_table_index(&user_commands, STRING("clear"), &clear_command_def);
return 0;