coolsquid

Untitled

Mar 29th, 2015
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. else if (data.getTileEntity() instanceof TileEntityBrewingStand) {
  2.  
  3. TileEntityBrewingStand brewer = (TileEntityBrewingStand) data.getTileEntity();
  4. int brewtime = brewer.getBrewTime();
  5. if (brewtime <= 0) {
  6. tip.add(StatCollector.translateToLocal("tooltip.wawla.brewing.finished"));
  7. }
  8. else if (brewtime > 0) {
  9. tip.add(StatCollector.translateToLocal("tooltip.wawla.brewing.time") + ": " + brewtime);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment