!Roman int calculation fix

This commit is contained in:
Indyuce 2020-02-13 22:29:01 +01:00
parent 568edef502
commit 1d3bed0d1c

View File

@ -101,7 +101,7 @@ public class MMOCoreUtils {
if (input < 1) if (input < 1)
return "<1"; return "<1";
if (input > 3999) if (input > 3999)
return ">499"; return ">3999";
String result = ""; String result = "";