mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 11:49:12 +00:00
Fix compile
This commit is contained in:
parent
7f8c801c07
commit
d57f7af453
1 changed files with 10 additions and 0 deletions
|
@ -1223,6 +1223,16 @@ public class OfflinePlayer implements Player {
|
|||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isGliding() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setGliding(boolean b) {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T extends Projectile> T launchProjectile(Class<? extends T> type, Vector vector) {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
|
|
Loading…
Reference in a new issue