Skip to content

Commit

Permalink
increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
DerToaster98 committed Apr 26, 2023
1 parent 127b795 commit 823b8d9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ buildscript {
mavenCentral()
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.69', changing: true
}
}
apply plugin: 'net.minecraftforge.gradle'
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
apply plugin: 'eclipse'

version = '1.12.2-2.6.12B'
version = '1.12.2-2.6.13B'
group = 'team.cqr.cqrepoured'
archivesBaseName = 'Chocolate_Quest_Repoured'

Expand Down
8 changes: 4 additions & 4 deletions src/main/java/team/cqr/cqrepoured/CQRMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
public class CQRMain {

public static final String MODID = "cqrepoured";
public static final String VERSION = "2.6.12B";
public static final String VERSION = "2.6.13B";
public static final String ACCEPTED_MINECRAFT_VERSIONS = "[1.12,1.12.2]";

@Instance
Expand Down Expand Up @@ -210,10 +210,10 @@ private void initConfigFolder(FMLPreInitializationEvent event) {
CQ_DUNGEON_GRID_FOLDER = new File(CQ_CONFIG_FOLDER, "grids") };

ConfigBackupHandler.registerConfig(CQ_DUNGEON_FOLDER.getName(), "1.2.0");
ConfigBackupHandler.registerConfig(CQ_DUNGEON_GRID_FOLDER.getName(), "1.0.0");
ConfigBackupHandler.registerConfig(CQ_DUNGEON_GRID_FOLDER.getName(), "1.0.1");
ConfigBackupHandler.registerConfig(CQ_CHEST_FOLDER.getName(), "1.0.0");
ConfigBackupHandler.registerConfig(CQ_STRUCTURE_FILES_FOLDER.getName(), "1.3.1");
ConfigBackupHandler.registerConfig(CQ_FACTION_FOLDER.getName(), "1.0.1");
ConfigBackupHandler.registerConfig(CQ_STRUCTURE_FILES_FOLDER.getName(), "1.4.0");
ConfigBackupHandler.registerConfig(CQ_FACTION_FOLDER.getName(), "1.0.2");
ConfigBackupHandler.registerConfig(CQ_INHABITANT_FOLDER.getName(), "1.0.0");
ConfigBackupHandler.registerConfig(CQ_ITEM_FOLDER.getName(), "1.0.0");
ConfigBackupHandler.registerConfig(CQ_CUSTOM_TEXTURES_FOLDER_ROOT.getName(), "1.1.0");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1194,7 +1194,7 @@ public Faction getFaction() {
public void setFaction(String newFac) {
this.setFaction(newFac, false);
}

public void setFaction(String newFac, boolean ignoreCTS) {
// TODO: Update faction on client too!!
if (!this.world.isRemote) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ staticReputation=False
#Allied factions
allies=INQUSITION,VILLAGERS,DWARVES_AND_GOLEMS,ENDERMEN,INQUISITION
#Enemy factions
enemies=GOBLINS,DRAGONS,WALKERS,PIRATE,ILLAGERS,BEASTS,GREMLINS
enemies=GOBLINS,DRAGONS,WALKERS,PIRATE,ILLAGERS,BEASTS,GREMLINS,UNDEAD
#Texture set
textureSet=TavernTS
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "cqrepoured",
"name": "Chocolate Quest Repoured Mod",
"description": "A complete rewrite of the Chocolate Quest mod by Chocolatin, who disappeared. A lot of features are still to be implemented, so please follow updates.",
"version": "2.6.12B",
"version": "2.6.13B",
"mcversion": "1.12.2",
"url": "https://cq-repoured.net/",
"updateUrl": "",
Expand Down

0 comments on commit 823b8d9

Please sign in to comment.