From 8e96232690eaca15302be8b75b918b731012c1b5 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Sat, 4 Jul 2020 01:58:02 -0500 Subject: [PATCH] Add explicit file extension to file check [skip ci] --- zone/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/command.cpp b/zone/command.cpp index 1e1b4475e..6dd380975 100755 --- a/zone/command.cpp +++ b/zone/command.cpp @@ -12827,7 +12827,7 @@ void command_hotfix(Client *c, const Seperator *sep) #ifdef WIN32 shared_memory_path = "shared_memory"; - if (file_exists("bin/shared_memory")) { + if (file_exists("bin/shared_memory.exe")) { shared_memory_path = "bin/shared_memory"; }