Skip to content
This repository has been archived by the owner on Oct 20, 2019. It is now read-only.

Commit

Permalink
Release 0.6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EXTER7 committed Dec 23, 2013
1 parent 6eb59a3 commit b624b2f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build_foundry.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash

MODNAME=foundry
MODVERSION=0.5.0.0
MODVERSION_API=0.5.0.0
MODVERSION=0.6.0.0
MODVERSION_API=0.6.0.0

rm -rf packed/*
if ./recompile.sh && ./reobfuscate_srg.sh
Expand Down
2 changes: 1 addition & 1 deletion src/exter/foundry/ModFoundry.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public class ModFoundry
{
public static final String MODID = "foundry";
public static final String MODNAME = "Foundry";
public static final String MODVERSION = "0.5.0.0";
public static final String MODVERSION = "0.6.0.0";

public static final String CHANNEL = "EXTER_Foundry";

Expand Down
4 changes: 2 additions & 2 deletions src/exter/foundry/tileentity/TileEntityMetalCaster.java
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,8 @@ public boolean isInvNameLocalized()
return false;
}

static private final int[] INSERT_SLOTS = { 2 };
static private final int[] EXTRACT_SLOTS = { 0 };
static private final int[] INSERT_SLOTS = { INVENTORY_EXTRA };
static private final int[] EXTRACT_SLOTS = { INVENTORY_OUTPUT };

@Override
public boolean isItemValidForSlot(int slot, ItemStack itemstack)
Expand Down

0 comments on commit b624b2f

Please sign in to comment.