Some minor tweaks to some block textures (had gradient in border).

This commit is contained in:
Florian Nücke 2014-12-08 02:10:07 +01:00
parent b1e368f283
commit 981d2ffb6f
9 changed files with 4 additions and 10 deletions

View File

@ -8,16 +8,11 @@ import net.minecraft.inventory.IInventory;
/** /**
* This interface is implemented as a marker by computer cases. * This interface is implemented as a marker by computer cases.
* <p/> * <p/>
* This is implemented by computer case tile entities, which also serve as its * This is implemented by computer case tile entities. That means you can
* computer components' environment. That means you can use this to check for * use this to check for computer cases by using:
* computer cases by using either:
* <pre> * <pre>
* if (tileEntity instanceof Case) { * if (tileEntity instanceof Case) {
* </pre> * </pre>
* or
* <pre>
* if (node.host() instanceof Case) {
* </pre>
* <p/> * <p/>
* The only purpose is to allow identifying tile entities as computer cases * The only purpose is to allow identifying tile entities as computer cases
* via the API, i.e. without having to link against internal classes. This * via the API, i.e. without having to link against internal classes. This

Binary file not shown.

Before

Width:  |  Height:  |  Size: 623 B

After

Width:  |  Height:  |  Size: 634 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 570 B

After

Width:  |  Height:  |  Size: 528 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 534 B

After

Width:  |  Height:  |  Size: 534 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 584 B

After

Width:  |  Height:  |  Size: 580 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 522 B

After

Width:  |  Height:  |  Size: 466 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 558 B

After

Width:  |  Height:  |  Size: 514 B

View File

@ -100,8 +100,7 @@ class Proxy {
OpenComputers.ID + ":" + Settings.namespace + "special" -> "special", OpenComputers.ID + ":" + Settings.namespace + "special" -> "special",
OpenComputers.ID + ":" + Settings.namespace + "special_redstone" -> "special_redstone", OpenComputers.ID + ":" + Settings.namespace + "special_redstone" -> "special_redstone",
OpenComputers.ID + ":" + Settings.namespace + "keyboard" -> "keyboard", OpenComputers.ID + ":" + Settings.namespace + "keyboard" -> "keyboard",
OpenComputers.ID + ":rack" -> "serverRack", OpenComputers.ID + ":rack" -> "serverRack"
OpenComputers.ID + ":appengTunnel" -> "oc.appenTunnel"
) )
def missingMappings(e: FMLMissingMappingsEvent) { def missingMappings(e: FMLMissingMappingsEvent) {
@ -118,7 +117,6 @@ class Proxy {
case _ => missing.warn() case _ => missing.warn()
} }
} }
else missing.warn()
} }
} }
} }

View File

@ -13,6 +13,7 @@ import net.minecraft.nbt.NBTTagCompound
import net.minecraft.tileentity.TileEntity import net.minecraft.tileentity.TileEntity
import net.minecraft.world.World import net.minecraft.world.World
// TODO Remove in 1.5
class DelegatorConverter extends Block(Material.rock) { class DelegatorConverter extends Block(Material.rock) {
NEI.hide(this) NEI.hide(this)