diff --git a/changelog.txt b/changelog.txt index c67c65ce6..bd3122ceb 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,9 @@ EQEMu Changelog (Started on Sept 24, 2003 15:50) ------------------------------------------------------- +== 03/09/2013 == +Zaela_S: Stop mobs aggroing on dead players when using RespawnFromHover. +Derision: Removed _log message from zone/CatchSignal on Linux as it can deadlock on shutdown if another signal is received while the _log call is being processed. + == 03/07/2013 == af4t: Melee tomes with names beginning "Skill:" (e.g. RNG Warder's Wrath, etc) can be memorized now, by hand-in-to-guildmaster or right-click-from-inventory. diff --git a/zone/net.cpp b/zone/net.cpp index 52a3bedb9..33a0997c4 100644 --- a/zone/net.cpp +++ b/zone/net.cpp @@ -494,8 +494,6 @@ int main(int argc, char** argv) { void CatchSignal(int sig_num) { #ifdef _WINDOWS _log(ZONE__INIT, "Recieved signal: %i", sig_num); -#else - _log(ZONE__INIT, "Recieved signal: %i in thread %d", sig_num, pthread_self()); #endif RunLoops = false; }