Skip to content

Commit

Permalink
Require minimum Forge version
Browse files Browse the repository at this point in the history
  • Loading branch information
raoulvdberge committed Dec 6, 2016
1 parent 4a27c5b commit b513b4e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/raoulvdberge/refinedstorage/RS.java
Expand Up @@ -14,14 +14,15 @@
import net.minecraftforge.fml.common.network.NetworkRegistry;
import net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper;

@Mod(modid = RS.ID, version = RS.VERSION, guiFactory = RS.GUI_FACTORY)
@Mod(modid = RS.ID, version = RS.VERSION, dependencies = RS.DEPENDENCIES, guiFactory = RS.GUI_FACTORY)
public final class RS {
static {
FluidRegistry.enableUniversalBucket();
}

public static final String ID = "refinedstorage";
public static final String VERSION = "1.3.3";
public static final String DEPENDENCIES = "required-after:forge@[13.19.1.2188,);";
public static final String GUI_FACTORY = "com.raoulvdberge.refinedstorage.gui.config.ModGuiFactory";

@SidedProxy(clientSide = "com.raoulvdberge.refinedstorage.proxy.ProxyClient", serverSide = "com.raoulvdberge.refinedstorage.proxy.ProxyCommon")
Expand Down

0 comments on commit b513b4e

Please sign in to comment.