resource purchasing

This commit is contained in:
2024-06-06 18:49:45 -05:00
parent 02aafc9274
commit 66804d5704
+3 -10
View File
@@ -29,19 +29,12 @@ public enum CharacterTitle {
private ByteBuffer footer; private ByteBuffer footer;
CharacterTitle(int _r, int _g, int _b, String _prefix) { CharacterTitle(int _r, int _g, int _b, String _prefix) {
char[] str_header; char[] str_header = ("^\\c" +
if(_prefix.length() > 1) {
str_header = ("^\\c" +
(((_r < 100) ? ((_r < 10) ? "00" : "0") : "") + ((byte) _r & 0xFF)) + (((_r < 100) ? ((_r < 10) ? "00" : "0") : "") + ((byte) _r & 0xFF)) +
(((_g < 100) ? ((_g < 10) ? "00" : "0") : "") + ((byte) _g & 0xFF)) + (((_g < 100) ? ((_g < 10) ? "00" : "0") : "") + ((byte) _g & 0xFF)) +
(((_b < 100) ? ((_b < 10) ? "00" : "0") : "") + ((byte) _b & 0xFF)) + (((_b < 100) ? ((_b < 10) ? "00" : "0") : "") + ((byte) _b & 0xFF)) +
'<' + _prefix + "> ").toCharArray(); _prefix).toCharArray();
} else{
str_header = ("^\\c" +
(((_r < 100) ? ((_r < 10) ? "00" : "0") : "") + ((byte) _r & 0xFF)) +
(((_g < 100) ? ((_g < 10) ? "00" : "0") : "") + ((byte) _g & 0xFF)) +
(((_b < 100) ? ((_b < 10) ? "00" : "0") : "") + ((byte) _b & 0xFF))).toCharArray();
}
char[] str_footer = ("^\\c255255255").toCharArray(); char[] str_footer = ("^\\c255255255").toCharArray();
this.headerLength = str_header.length; this.headerLength = str_header.length;