Improvements of status effects in database

This commit is contained in:
Anuken
2021-03-10 16:22:07 -05:00
parent d4e6817232
commit bd36ca821d
21 changed files with 98 additions and 51 deletions
@@ -44,8 +44,7 @@ public class MessageBlock extends Block{
for(int i = 0; i < text.length(); i++){
char c = text.charAt(i);
if(c == '\n'){
count ++;
if(count <= maxNewlines){
if(count++ <= maxNewlines){
tile.message.append('\n');
}
}else{