Skip to content

Commit

Permalink
few minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Azanor committed Sep 22, 2016
1 parent fb709f0 commit 15ada5d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 2 additions & 0 deletions build.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
gradlew build
pause
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle.forge'


version = "1.10.2-1.3.BETA2"
version = "1.10.2-1.3.BETA3"
group= "com.azanor.baubles"
archivesBaseName = "Baubles"

Expand Down
3 changes: 2 additions & 1 deletion rebuild.bat
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
gradlew setupDecompWorkspace eclipse
gradlew setupDecompWorkspace eclipse
pause
7 changes: 3 additions & 4 deletions src/main/java/baubles/common/Baubles.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
dependencies="required-after:Forge@[12.18.1,);")
public class Baubles {

public static final String MODID = "Baubles";
public static final String MODID = "baubles";
public static final String MODNAME = "Baubles";
public static final String VERSION = "1.3.BETA2";
public static final String VERSION = "1.3.BETA3";

@SidedProxy(clientSide = "baubles.client.ClientProxy", serverSide = "baubles.common.CommonProxy")
public static CommonProxy proxy;
Expand All @@ -41,12 +41,11 @@ public class Baubles {
public EventHandlerEntity entityEventHandler;
public File modDir;

public static final Logger log = LogManager.getLogger("Baubles");
public static final Logger log = LogManager.getLogger(MODID.toUpperCase());
public static final int GUI = 0;

@EventHandler
public void preInit(FMLPreInitializationEvent event) {
event.getModMetadata().version = Baubles.VERSION;
modDir = event.getModConfigurationDirectory();

try {
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.3.BETA3
- a few minor fixes / tweaks

1.3.BETA2
- made baubles packets a bit more thread safe

Expand Down

0 comments on commit 15ada5d

Please sign in to comment.