Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
GlodBlock committed Dec 31, 2023
1 parent ce912df commit ea56fc5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'idea'

version = "2.5.1-r"
version = "2.5.2-r"
group = "ae2fc"
archivesBaseName = "Fluid Craft for AE2"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/glodblock/github/FluidCraft.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class FluidCraft {

public static final String MODID = "ae2fc";
public static final String VERSION = "2.5.1-r";
public static final String VERSION = "2.5.2-r";

@Mod.Instance(MODID)
public static FluidCraft INSTANCE;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void onTick(TickEvent.ClientTickEvent event) {
if (!finished && Minecraft.getMinecraft().player != null) {
EntityPlayer player = Minecraft.getMinecraft().player;
finished = true;
player.sendMessage(new TextComponentString("AE2FC 2.5.1-r is on beta test!"));
player.sendMessage(new TextComponentString("AE2FC 2.5.2-r is on beta test!"));
player.sendMessage(new TextComponentString("If you encounter any bug or something not working"));
player.sendMessage(new TextComponentString("Please report it to https://github.com/GlodBlock/AE2FluidCraft-Rework"));
MinecraftForge.EVENT_BUS.unregister(this);
Expand Down

0 comments on commit ea56fc5

Please sign in to comment.