From e0d65df4de9016a5c8ad11a9cbc113613f0635e9 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Thu, 6 Aug 2015 20:29:55 -0400 Subject: [PATCH] Fix #myskills crash --- zone/client.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/zone/client.cpp b/zone/client.cpp index f784e507e..acd0456ca 100644 --- a/zone/client.cpp +++ b/zone/client.cpp @@ -4957,7 +4957,7 @@ void Client::ShowSkillsWindow() "Singing","Sneak","Specialize Abjuration","Specialize Alteration","Specialize Conjuration","Specialize Divination","Specialize Evocation","Pick Pockets", "Stringed Instruments","Swimming","Throwing","Tiger Claw","Tracking","Wind Instruments","Fishing","Make Poison","Tinkering","Research", "Alchemy","Baking","Tailoring","Sense Traps","Blacksmithing","Fletching","Brewing","Alcohol Tolerance","Begging","Jewelry Making", - "Pottery","Percussion Instruments","Intimidation","Berserking","Taunt","Frenzy"}; + "Pottery","Percussion Instruments","Intimidation","Berserking","Taunt","Frenzy","Remove Traps","Triple Attack"}; for(int i = 0; i <= (int)HIGHEST_SKILL; i++) Skills[SkillName[i]] = (SkillUseTypes)i; @@ -4979,7 +4979,6 @@ void Client::ShowSkillsWindow() this->SendPopupToClient(WindowTitle, WindowText.c_str()); } - void Client::SetShadowStepExemption(bool v) { if(v == true) @@ -8654,7 +8653,7 @@ uint32 Client::GetMoney(uint8 type, uint8 subtype) { break; case 2: value = static_cast(m_pp.platinum_cursor); - break; + break; case 3: value = static_cast(m_pp.platinum_shared); break; @@ -8667,4 +8666,4 @@ uint32 Client::GetMoney(uint8 type, uint8 subtype) { break; } return value; -} \ No newline at end of file +}