Changing Skinning does not workSolved

Changing player level Skinning does not work as documented

zLevel S
I'll try to set skinning (S) and the Plugin returnes "incorrect skill" although it is a correct skill

put a new line after line 872 and add

else if (skillName.Equals("S")) skill = Skills.SKINNING;

so it looks like this

                if (skillName == "*") skill = Skills.ALL;
                else if (skillName.Equals("C")) skill = Skills.CRAFTING;
                else if (skillName.Equals("WC")) skill = Skills.WOODCUTTING;
                else if (skillName.Equals("M")) skill = Skills.MINING;
                else if (skillName.Equals("A")) skill = Skills.ACQUIRE;
                else if (skillName.Equals("S")) skill = Skills.SKINNING;
                else { user.Reply("Incorrect skill. Possible skills are: WC, M, S, A, C, *(All skills)."); return; }​

not sure why its not there. I put it there, put in the update notes that I added it there, and saw it there later and now its gone again. lol no idea.

Finally the new Version 3.1.6 works fine, tnx ! :-)

Locked automatically