mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Added description to the booklet to explain what it is and that it needs to be right-clicked
This commit is contained in:
parent
93b42be9d8
commit
3407aa61ba
3 changed files with 10 additions and 1 deletions
|
@ -88,6 +88,11 @@ public class ItemBooklet extends ItemBase implements IHudDisplay{
|
|||
@Override
|
||||
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean bool){
|
||||
list.add(StringUtil.localize("tooltip."+ModUtil.MOD_ID+"."+this.getBaseName()+".desc"));
|
||||
|
||||
for(int i = 1; i <= 4; i++){
|
||||
String format = i == 4 ? TextFormatting.GOLD.toString()+TextFormatting.ITALIC : TextFormatting.RESET.toString();
|
||||
list.add(format+StringUtil.localize("tooltip."+ModUtil.MOD_ID+"."+this.getBaseName()+".sub."+i));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ public class TileEntityFishingNet extends TileEntityBase{
|
|||
}
|
||||
}
|
||||
else{
|
||||
int time = 150;
|
||||
int time = 15000;
|
||||
this.timeUntilNextDrop = time+Util.RANDOM.nextInt(time/2);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -537,6 +537,10 @@ tooltip.actuallyadditions.laser.stored.desc=<Laser stored!>
|
|||
tooltip.actuallyadditions.laser.connected.desc=<Laser connected!>
|
||||
tooltip.actuallyadditions.laser.cantConnect.desc=Can't connect: The relays are either part of the same network, the stored relay isn't the same type or doesn't exist anymore or it is too far away!
|
||||
tooltip.actuallyadditions.itemBooklet.desc=Or "Booklet", if you will
|
||||
tooltip.actuallyadditions.itemBooklet.sub.1=This book guides you through all of
|
||||
tooltip.actuallyadditions.itemBooklet.sub.2=the features that Actually Additions
|
||||
tooltip.actuallyadditions.itemBooklet.sub.3=has to offer.
|
||||
tooltip.actuallyadditions.itemBooklet.sub.4=Use while holding to open.
|
||||
tooltip.actuallyadditions.playerProbe.disconnect.1=The player you were probing has broken the connection before you could strap him to the Player Interface! Data will be cleared!
|
||||
tooltip.actuallyadditions.playerProbe.disconnect.2=The player you were probing has disconnected before you could strap him to the Player Interface! Data will be cleared!
|
||||
tooltip.actuallyadditions.playerProbe.probing=Probing
|
||||
|
|
Loading…
Reference in a new issue