Skip to content

Commit

Permalink
Fix Shuriken damage calculation only taking the first part into accou…
Browse files Browse the repository at this point in the history
…nt >_>
  • Loading branch information
bonii-xx committed Nov 2, 2014
1 parent 964135c commit 83e1a33
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion src/main/java/tconstruct/weaponry/weapons/Shuriken.java
Expand Up @@ -27,14 +27,29 @@ public Shuriken() {

@Override
public float getDamageModifier() {
return 0.4f;
return 0.8f;
}

@Override
public int getPartAmount() {
return 4;
}

@Override
public int durabilityTypeHandle() {
return 2;
}

@Override
public int durabilityTypeAccessory() {
return 2;
}

@Override
public int durabilityTypeExtra() {
return 2;
}

@Override
public String getIconSuffix(int partType) {
switch (partType)
Expand Down Expand Up @@ -174,4 +189,6 @@ public void registerIcons(IIconRegister iconRegister) {
public CrosshairType getCrosshairType() {
return CrosshairType.TIP;
}


}

0 comments on commit 83e1a33

Please sign in to comment.