save strings.json

This commit is contained in:
Jesse Boyd
2019-11-21 20:37:56 +00:00
parent 38d1e79fcb
commit 0c85db920c
75 changed files with 107 additions and 813 deletions

View File

@@ -144,22 +144,7 @@ public class PlayerProxy extends AbstractPlayerActor {
@Override
public void printRaw(String msg) {
basePlayer.print(TextComponent.of(msg));
}
@Override
public void printDebug(String msg) {
basePlayer.printDebug(TextComponent.of(msg));
}
@Override
public void print(String msg) {
basePlayer.printInfo(TextComponent.of(msg));
}
@Override
public void printError(String msg) {
basePlayer.printError(TextComponent.of(msg));
basePlayer.printRaw(msg);
}
@Override