v0.2.4: corrected typo with ring of force

This commit is contained in:
Evan Debenham 2015-03-02 17:21:04 -05:00
parent a815632305
commit 48aa3fc613

View File

@ -28,7 +28,7 @@ public class RingOfForce extends Ring {
desc += levelKnown ? desc += levelKnown ?
"average damage with this ring is " + (str/2+level + (int)(str*0.5f*level) + str*2)/2 + " points per hit.": "average damage with this ring is " + (str/2+level + (int)(str*0.5f*level) + str*2)/2 + " points per hit.":
"typical average damage with this ring is" + (str/2+1 + (int)(str*0.5f) + str*2)/2 + " points per hit."; "typical average damage with this ring is" + (str/2+1 + (int)(str*0.5f) + str*2)/2 + " points per hit.";
desc += " Wearing a second ring of force would enchance this."; desc += " Wearing a second ring of force would enhance this.";
return desc; return desc;
} else } else
return super.desc(); return super.desc();