Skip to content

Commit

Permalink
Support forge clients without the mod
Browse files Browse the repository at this point in the history
  • Loading branch information
irtimaled committed Jul 20, 2017
1 parent a876ce3 commit 31bbbe4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions java/com/irtimaled/bbor/forge/ForgeMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper;

@Mod(modid = ForgeMod.MODID, name = ForgeMod.NAME, version = ForgeMod.VERSION, acceptedMinecraftVersions = ForgeMod.MCVERSION)
@Mod(modid = ForgeMod.MODID, name = ForgeMod.NAME, version = ForgeMod.VERSION, acceptedMinecraftVersions = ForgeMod.MCVERSION, acceptableRemoteVersions = "*")
public class ForgeMod {

public static final String MODID = "bbor";
public static final String NAME = "Bounding Box Outline Reloaded";
public static final String VERSION = "1.0.0-beta15";
public static final String MCVERSION = "1.11.2";
public static final String VERSION = "1.0.0-beta18";
public static final String MCVERSION = "1.12";

private ConfigManager configManager;

Expand Down

0 comments on commit 31bbbe4

Please sign in to comment.