mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Tweaked the Inputter
This commit is contained in:
parent
93cfe0cd5f
commit
e6702d3c6f
2 changed files with 2 additions and 8 deletions
|
@ -138,8 +138,7 @@ public class TileEntityInputter extends TileEntityInventoryBase implements IButt
|
|||
boolean can = false;
|
||||
|
||||
ItemStack theStack = null;
|
||||
for(int i = theSlotToPull; i < this.slotToPullEnd; i++){
|
||||
if(i < 0) continue;
|
||||
for(int i = Math.max(theSlotToPull, 0); i < this.slotToPullEnd; i++){
|
||||
if(i >= theInventory.getSizeInventory()) return;
|
||||
|
||||
ItemStack tempStack = theInventory.getStackInSlot(i);
|
||||
|
@ -201,8 +200,7 @@ public class TileEntityInputter extends TileEntityInventoryBase implements IButt
|
|||
|
||||
if(this.slots[0] != null){
|
||||
ItemStack theStack = null;
|
||||
for(int i = theSlotToPut; i < this.slotToPutEnd; i++){
|
||||
if(i < 0) continue;
|
||||
for(int i = Math.max(theSlotToPut, 0); i < this.slotToPutEnd; i++){
|
||||
if(i >= theInventory.getSizeInventory()) return;
|
||||
|
||||
ItemStack tempStack = theInventory.getStackInSlot(i);
|
||||
|
|
|
@ -554,10 +554,6 @@ info.actuallyadditions.update.download.desc=[{"text":"Download the newest Versio
|
|||
info.actuallyadditions.update.failed.desc=[{"text":"The Update Check for "},{"text":"Actually Additions ","color":"dark_green","bold":"true"},{"text":"failed! Check your Internet Connection and the Logs for more Info!","color":"none"}]
|
||||
info.actuallyadditions.update.changelog.desc=Updates: %s
|
||||
|
||||
info.actuallyadditions.squidKilled.desc.1=You just killed a squid, am I right!?
|
||||
info.actuallyadditions.squidKilled.desc.2=YOU DIDN'T JUST DO THAT!
|
||||
info.actuallyadditions.squidKilled.desc.3=The thing you just did... someone's gonna be pissed about that!
|
||||
|
||||
achievement.actuallyadditions.pickUpSolidXP=Square and yummy!
|
||||
achievement.actuallyadditions.pickUpSolidXP.desc=Pick up some Solidified Experience
|
||||
achievement.actuallyadditions.craftKnifeBlade=Sharp! So Sharp!
|
||||
|
|
Loading…
Reference in a new issue