diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp index 307f98ebf4..fe6e146b54 100755 --- a/src/server/authserver/Main.cpp +++ b/src/server/authserver/Main.cpp @@ -109,7 +109,7 @@ extern int main(int argc, char **argv) sLog->outString(" \\ \\___ \\ \\ _'-\\ \\____ \\ \\ __\\ \\ \\ \\ __<\\ \\ __\\ "); sLog->outString(" \\/\\_____\\ \\_\\ \\_\\/\\_____\\ \\_\\ \\ \\_\\ \\_\\ \\_\\ \\_____\\ "); sLog->outString(" \\/_____/\\/_/\\/_/\\/_____/\\/_/ \\/_/\\/_/ /_/\\/_____/ "); - sLog->outString(" Project SkyFireEmu 2012(c) Open-sourced Game Emulation "); + sLog->outString(" Project SkyFireEmu 2017(c) Open-sourced Game Emulation "); sLog->outString(" \n"); sLog->outDetail("%s (Library: %s)", OPENSSL_VERSION_TEXT, SSLeay_version(SSLEAY_VERSION)); diff --git a/src/server/worldserver/Master.cpp b/src/server/worldserver/Master.cpp index b05708818c..1d5b29c908 100755 --- a/src/server/worldserver/Master.cpp +++ b/src/server/worldserver/Master.cpp @@ -131,7 +131,7 @@ int Master::Run() sLog->outString(" \\ \\___ \\ \\ _'-\\ \\____ \\ \\ __\\ \\ \\ \\ __<\\ \\ __\\ "); sLog->outString(" \\/\\_____\\ \\_\\ \\_\\/\\_____\\ \\_\\ \\ \\_\\ \\_\\ \\_\\ \\_____\\ "); sLog->outString(" \\/_____/\\/_/\\/_/\\/_____/\\/_/ \\/_/\\/_/ /_/\\/_____/ "); - sLog->outString(" Project SkyFireEmu 2012(c) Open-Sourced Game Emulation Project "); + sLog->outString(" Project SkyFireEmu 2017(c) Open-Sourced Game Emulation Project "); sLog->outString(" \n"); ///- Worldserver PID file creation diff --git a/src/tools/vmap3_extractor/vmapexport.cpp b/src/tools/vmap3_extractor/vmapexport.cpp index 3241e7c558..40f0a14e70 100644 --- a/src/tools/vmap3_extractor/vmapexport.cpp +++ b/src/tools/vmap3_extractor/vmapexport.cpp @@ -267,21 +267,9 @@ void ParsMapFiles() void getGamePath() { #ifdef _WIN32 - HKEY key; - DWORD t, s; - LONG l; - s = sizeof(input_path); - memset(input_path, 0, s); - l = RegOpenKeyExA(HKEY_LOCAL_MACHINE, "SOFTWARE\\Blizzard Entertainment\\World of Warcraft", 0, KEY_QUERY_VALUE, &key); - l = RegQueryValueExA(key, "InstallPath", 0, &t, (LPBYTE)input_path, &s); - RegCloseKey(key); - if (strlen(input_path) > 0) - { - if (input_path[strlen(input_path) - 1] != '\\') strcat(input_path, "\\"); - } - strcat(input_path, "Data\\"); + strcpy(input_path,"Data\\"); #else - strcpy(input_path, "Data/"); + strcpy(input_path,"Data/"); #endif }