From 8327f22f6f82e5e9d145201ab9d560e3af5f41f2 Mon Sep 17 00:00:00 2001 From: JJ Date: Thu, 10 Oct 2013 22:38:23 -0400 Subject: [PATCH] Revert change to EnterWorldPacket introduced on 22 April 2013 to fix inability to enter Tutorial or Go Home from character select screen. --- changelog.txt | 1 + world/client.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 899ab7015..6bd5f2387 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,6 +2,7 @@ EQEMu Changelog (Started on Sept 24, 2003 15:50) ------------------------------------------------------- == 10/10/2013 == Secrets: Fixed zone shutdown (or #reloadqst) reinitalization of Perl. This should allow for Perl 5.14 and later to work on Windows under the new quest system. +JJ: Revert change to EnterWorldPacket introduced on 22 April 2013 to fix inability to enter Tutorial or Go Home from character select screen. == 10/09/2013 == demonstar55: Fixed some more instances of the AA timer being eaten diff --git a/world/client.cpp b/world/client.cpp index 1b142b693..57c60c072 100644 --- a/world/client.cpp +++ b/world/client.cpp @@ -723,7 +723,7 @@ bool Client::HandleEnterWorldPacket(const EQApplicationPacket *app) { if(cs->gohome[x] == 1) { home_enabled = true; - return true; + break; } } } @@ -755,7 +755,7 @@ bool Client::HandleEnterWorldPacket(const EQApplicationPacket *app) { if(cs->tutorial[x] == 1) { tutorial_enabled = true; - return true; + break; } } }