Skip to content

Commit

Permalink
Add Minecraft 1.12.2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Traneptora committed Sep 28, 2017
1 parent 0c0fa9e commit e406efd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions build.sh
@@ -1,13 +1,13 @@
#!/bin/sh
set -e

LONGNAME=ThebombzenAPI
LONGNAMELC=thebombzenapi
SHORTNAME=API
VERS=2.9.1
MC_VERS=1.12.1
MDK=1.12.1-14.22.1.2478
ARCHIVE=$LONGNAME-v$VERS-mc$MC_VERS.jar
LONGNAME="ThebombzenAPI"
LONGNAMELC="thebombzenapi"
SHORTNAME="API"
VERS="2.9.2"
MC_VERS="1.12.2"
MDK="1.12.2-14.23.0.2493"
ARCHIVE="${LONGNAME}-v${VERS}-mc${MC_VERS}.jar"

CURRDIR="$PWD"

Expand Down
2 changes: 1 addition & 1 deletion resources/mcmod.info
Expand Up @@ -3,7 +3,7 @@
"modid": "thebombzenapi",
"name": "ThebombzenAPI",
"description": "ThebombzenAPI provides common code among Thebombzen's mods.",
"version": "2.9.1",
"version": "2.9.2",
"credits": "Thebombzen"
}
]
8 changes: 4 additions & 4 deletions src/com/thebombzen/mods/thebombzenapi/Constants.java
Expand Up @@ -10,16 +10,16 @@ public interface Constants {
/**
* The current version of ThebombzenAPI.
*/
public static final String VERSION = "2.9.1";
public static final String VERSION = "2.9.2";

/**
* The version of Minecraft this was built for.
* The human-readable version of Minecraft this was built for.
*/
public static final String SUPPORTED_MC_VERSIONS = "1.9.4 to 1.12.1";
public static final String SUPPORTED_MC_VERSIONS = "1.9.4 to 1.12.2";

/**
* The versions of Minecraft this should be installed in.
*/
public static final String[] INSTALL_MC_VERSIONS = {"1.12.1", "1.11.2", "1.10.2", "1.9.4"};
public static final String[] INSTALL_MC_VERSIONS = {"1.12.2", "1.12.1", "1.11.2", "1.10.2", "1.9.4"};

}

0 comments on commit e406efd

Please sign in to comment.