From a5f204e455497f34eb88e3b19f636272beb44cce Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sat, 27 Feb 2016 01:20:46 +1000 Subject: Tidying things again.. --- .classpath | 5 +- .gitignore | 113 +++++++++++++++++++++ .../GregTech/AbstractGtTankConduitNetwork.java | 2 +- src/resources/assets/miscutils/lang/en_US.lang | 3 + 4 files changed, 120 insertions(+), 3 deletions(-) create mode 100644 .gitignore diff --git a/.classpath b/.classpath index f03424b542..84c79230fa 100644 --- a/.classpath +++ b/.classpath @@ -1,11 +1,12 @@ - + - + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..440eed1aa0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,113 @@ +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.log +*.log.gz +*.msi +*.msm +*.msp +*.json +*.txt +*.zip +.gradle +.settings +asm/ +bin/ +config/ +crash-reports/ +gradle/ +logs/ +mods/ +resourcepacks/ +saves/ +VillageWiper/ +world/ + +# Windows shortcuts +*.lnk + +# ========================= +# Operating System Files +# ========================= + +# OSX +# ========================= + +.DS_Store +.AppleDouble +.LSOverride + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# Created by https://www.gitignore.io/api/eclipse + +### Eclipse ### + +.metadata +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.settings/ +.loadpath + +# Eclipse Core +.project + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# PyDev specific (Python IDE for Eclipse) +*.pydevproject + +# CDT-specific (C/C++ Development Tooling) +.cproject + +# JDT-specific (Eclipse Java Development Tools) +.classpath + +# Java annotation processor (APT) +.factorypath + +# PDT-specific (PHP Development Tools) +.buildpath + +# sbteclipse plugin +.target + +# TeXlipse plugin +.texlipse + +# STS (Spring Tool Suite) +.springBeans +/resourcepacks/Forge_GuiLibv1.0.7.2.zip diff --git a/src/Java/miscutil/enderio/conduit/GregTech/AbstractGtTankConduitNetwork.java b/src/Java/miscutil/enderio/conduit/GregTech/AbstractGtTankConduitNetwork.java index 8cd720fa18..e48a9b97e5 100644 --- a/src/Java/miscutil/enderio/conduit/GregTech/AbstractGtTankConduitNetwork.java +++ b/src/Java/miscutil/enderio/conduit/GregTech/AbstractGtTankConduitNetwork.java @@ -6,7 +6,7 @@ import crazypants.enderio.conduit.AbstractConduitNetwork; public class AbstractGtTankConduitNetwork extends AbstractConduitNetwork { protected GasStack gasType; - + private int test; protected AbstractGtTankConduitNetwork(Class cl) { super(cl); } diff --git a/src/resources/assets/miscutils/lang/en_US.lang b/src/resources/assets/miscutils/lang/en_US.lang index 190cd9e9d2..bf9e663cbd 100644 --- a/src/resources/assets/miscutils/lang/en_US.lang +++ b/src/resources/assets/miscutils/lang/en_US.lang @@ -35,6 +35,9 @@ item.itemPlateDimensionShard.name=Dimensional Plate item.itemIngotBloodSteel.name=Blood Steel Ingot item.itemPlateBloodSteel.name=Blood Steel Plate +tile.blockGriefSaver.name=Anti-Griefer [WIP] +tile.blockStaballoy.name=Block of Staballoy + tile.blockBloodSteel.name=Block of Blood Steel tile.BloodSteelFurnace.name=Blood Steel Industrial Furnace -- cgit