Fixed compile issue

This commit is contained in:
MattBDev
2019-09-13 23:17:40 -04:00
parent e72f1b32df
commit 0bddb565ab
2 changed files with 17 additions and 14 deletions

View File

@@ -198,6 +198,11 @@ public class PlayerProxy extends AbstractPlayerActor {
basePlayer.sendFakeBlock(pos, block);
}
@Override
public void sendTitle(String title, String sub) {
basePlayer.sendTitle(title, sub);
}
public Player getBasePlayer() {
return basePlayer;
}