317 [PI] HELP: Custom Item: 2h error.
I currently have the Masamune added to my server and I can still wear a shield with it. I have included it in player.java in the section when it says 2h and godswords like this:
public boolean wearing2h() {
Client c = (Client)this;
String s = c.getItems().getItemName(c.playerEquipment[c.playerWeapon]);
if (s.contains("2h"))
return true;
if (s.contains("Masamune"))
return true;
else if (s.contains("godsword"))
return true;
return false;
[Only registered and activated users can see links. Click Here To Register...]
The dragon 2h on my server doesn't allow for a shield, so I don't know what I'm doing wrong or missing. Thank you so much for reading this and God bless! :)