Skip to content

Commit

Permalink
Fixed compilation errors with latest Spigot
Browse files Browse the repository at this point in the history
  • Loading branch information
Libter committed Oct 5, 2016
1 parent f938350 commit 39152a8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/com/gmail/zariust/otherdrops/PlayerWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -1624,4 +1624,24 @@ public <T extends Projectile> T launchProjectile(Class<? extends T> type, Vector
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

@Override
public boolean isHandRaised() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

@Override
public PotionEffect getPotionEffect(PotionEffectType pet) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

@Override
public int getPortalCooldown() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

@Override
public void setPortalCooldown(int i) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

}

0 comments on commit 39152a8

Please sign in to comment.