mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 23:28:35 +01:00
Added an information to the white-/blacklist option in the advanced ESD noting that both whitelists apply
This commit is contained in:
parent
5f71b411b1
commit
be1556e39e
2 changed files with 11 additions and 3 deletions
|
@ -22,8 +22,8 @@ import net.minecraft.world.World;
|
||||||
import org.lwjgl.input.Keyboard;
|
import org.lwjgl.input.Keyboard;
|
||||||
import org.lwjgl.opengl.GL11;
|
import org.lwjgl.opengl.GL11;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
@SideOnly(Side.CLIENT)
|
@SideOnly(Side.CLIENT)
|
||||||
|
@ -213,13 +213,20 @@ public class GuiInputter extends GuiContainer{
|
||||||
this.whitelistPut.displayString = this.tileInputter.isPutWhitelist ? "O" : "X";
|
this.whitelistPut.displayString = this.tileInputter.isPutWhitelist ? "O" : "X";
|
||||||
|
|
||||||
if(this.isAdvanced){
|
if(this.isAdvanced){
|
||||||
|
String[] strings = StringUtil.localizeFormatted("info."+ModUtil.MOD_ID_LOWER+".inputter.whitelistInfo").split(Pattern.quote("|"));
|
||||||
String text1 = this.tileInputter.isPullWhitelist ? StringUtil.localize("info."+ModUtil.MOD_ID_LOWER+".gui.whitelist") : StringUtil.localize("info."+ModUtil.MOD_ID_LOWER+".gui.blacklist");
|
String text1 = this.tileInputter.isPullWhitelist ? StringUtil.localize("info."+ModUtil.MOD_ID_LOWER+".gui.whitelist") : StringUtil.localize("info."+ModUtil.MOD_ID_LOWER+".gui.blacklist");
|
||||||
if(x >= guiLeft+3 && y >= guiTop+16 && x <= guiLeft+18 && y <= guiTop+31){
|
if(x >= guiLeft+3 && y >= guiTop+16 && x <= guiLeft+18 && y <= guiTop+31){
|
||||||
this.func_146283_a(Collections.singletonList(text1), x, y);
|
ArrayList list = new ArrayList();
|
||||||
|
list.add(StringUtil.BOLD+text1);
|
||||||
|
list.addAll(Arrays.asList(strings));
|
||||||
|
this.func_146283_a(list, x, y);
|
||||||
}
|
}
|
||||||
String text2 = this.tileInputter.isPutWhitelist ? StringUtil.localize("info."+ModUtil.MOD_ID_LOWER+".gui.whitelist") : StringUtil.localize("info."+ModUtil.MOD_ID_LOWER+".gui.blacklist");
|
String text2 = this.tileInputter.isPutWhitelist ? StringUtil.localize("info."+ModUtil.MOD_ID_LOWER+".gui.whitelist") : StringUtil.localize("info."+ModUtil.MOD_ID_LOWER+".gui.blacklist");
|
||||||
if(x >= guiLeft+157 && y >= guiTop+16 && x <= guiLeft+172 && y <= guiTop+31){
|
if(x >= guiLeft+157 && y >= guiTop+16 && x <= guiLeft+172 && y <= guiTop+31){
|
||||||
this.func_146283_a(Collections.singletonList(text2), x, y);
|
ArrayList list = new ArrayList();
|
||||||
|
list.add(StringUtil.BOLD+text2);
|
||||||
|
list.addAll(Arrays.asList(strings));
|
||||||
|
this.func_146283_a(list, x, y);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -658,6 +658,7 @@ info.actuallyadditions.update.changelog.desc=Updates: %s
|
||||||
|
|
||||||
info.actuallyadditions.inputter.info.1=This is the first Slot in the |connected Inventory to [p] at.
|
info.actuallyadditions.inputter.info.1=This is the first Slot in the |connected Inventory to [p] at.
|
||||||
info.actuallyadditions.inputter.info.2=This is the slot after the last Slot |in the connected Inventory to [p] at. |What that means: If you, for example, write 2 in |the field to the left and 5 in this one, |it will [p] at Slot 2, 3, and 4.
|
info.actuallyadditions.inputter.info.2=This is the slot after the last Slot |in the connected Inventory to [p] at. |What that means: If you, for example, write 2 in |the field to the left and 5 in this one, |it will [p] at Slot 2, 3, and 4.
|
||||||
|
info.actuallyadditions.inputter.whitelistInfo=This applies for this part |of the white-/blacklist. |The other side applies as well, |so you can have some Items |whitelisted and some blacklisted. |Note that, if you have an empty blacklist |or an item whitelisted on at least one |side, it will always go through.
|
||||||
|
|
||||||
achievement.actuallyadditions.pickUpSolidXP=Square and yummy!
|
achievement.actuallyadditions.pickUpSolidXP=Square and yummy!
|
||||||
achievement.actuallyadditions.pickUpSolidXP.desc=Pick up some Solidified Experience
|
achievement.actuallyadditions.pickUpSolidXP.desc=Pick up some Solidified Experience
|
||||||
|
|
Loading…
Reference in a new issue