From 98c835e470be843bba293534a42acb4012017e83 Mon Sep 17 00:00:00 2001 From: Michael Cook Date: Sat, 12 Oct 2013 00:29:44 -0400 Subject: [PATCH] Fix Titanium clients from not being able to start in Tutorial zone. --- changelog.txt | 3 +++ world/client.cpp | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/changelog.txt b/changelog.txt index c84aa1924..55233443a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ EQEMu Changelog (Started on Sept 24, 2003 15:50) ------------------------------------------------------- +== 10/12/2013 == +demonstar55: Allow Titanium and lower clients to enter Tutorial zone from character select + == 10/11/2013 == JJ: (demonstar55) Allow use of Go Home button when Tutorial still selected in RoF. diff --git a/world/client.cpp b/world/client.cpp index 0fd211790..da213ef92 100644 --- a/world/client.cpp +++ b/world/client.cpp @@ -666,7 +666,11 @@ bool Client::HandleCharacterCreatePacket(const EQApplicationPacket *app) { safe_delete(outapp); } else + { + if(ClientVersionBit & BIT_TitaniumAndEarlier) + StartInTutorial = true; SendCharInfo(); + } return true; }