From 6036bada409a9069382e28ab55aca9ae13866204 Mon Sep 17 00:00:00 2001 From: EmeraldLockdown <86802223+EmeraldLoc@users.noreply.github.com> Date: Mon, 9 Mar 2026 23:47:48 -0500 Subject: [PATCH] please windows.... no warnings, I'm doing a cast just for you, I need this windows :pray: --- src/pc/network/moderation_list.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pc/network/moderation_list.c b/src/pc/network/moderation_list.c index 3471f40a6..7b4222e80 100644 --- a/src/pc/network/moderation_list.c +++ b/src/pc/network/moderation_list.c @@ -45,7 +45,8 @@ void moderation_list_save() { struct ModerationEntry* entry = list->list[i]; if (!entry) continue; fprintf(file, "[Entry %u for %u]\n", i, type); - fprintf(file, "time = %ld\n", entry->time); + // windows <3 + fprintf(file, "time = %lld\n", (long long)entry->time); fprintf(file, "playerName = %s\n", entry->playerName); fprintf(file, "playerColorR = %d\n", entry->playerColor[0]); fprintf(file, "playerColorG = %d\n", entry->playerColor[1]);