Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- else if (data.getTileEntity() instanceof TileEntityBrewingStand) {
- TileEntityBrewingStand brewer = (TileEntityBrewingStand) data.getTileEntity();
- int brewtime = brewer.getBrewTime();
- if (brewtime <= 0) {
- tip.add(StatCollector.translateToLocal("tooltip.wawla.brewing.finished"));
- }
- else if (brewtime > 0) {
- tip.add(StatCollector.translateToLocal("tooltip.wawla.brewing.time") + ": " + brewtime);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment