SPIGOT-1677: Fix attributes with only single underscore.

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2016-03-03 16:38:57 +11:00
parent 3583191fec
commit 4ca4351148

View file

@ -29,8 +29,10 @@ public class CraftAttributeMap implements Attributable {
StringBuilder sb = new StringBuilder(bukkit.toLowerCase());
sb.setCharAt(first, '.');
sb.deleteCharAt(second);
sb.setCharAt(second, bukkit.charAt(second + 1));
if (second != -1) {
sb.deleteCharAt(second);
sb.setCharAt(second, bukkit.charAt(second + 1));
}
return sb.toString();
}