diff --git a/changelog.txt b/changelog.txt index 28dc10d68..bb2e9e4e2 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 == Bad_Captain: Fixed merc crash issue by updating special_abilities & vwMercNpcTypes (Sorvani). Bad_Captain: Bots- added out of combat bard songs & #bot bardoutofcombat on|off command to turn them on/off. 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; }