From 123d75f56d6402ead60286e03f53bd130a3825a4 Mon Sep 17 00:00:00 2001 From: chrisj42 Date: Wed, 12 Dec 2018 01:30:12 -0500 Subject: [PATCH] removed dev tag from version --- core/common/src/miniventure/game/GameCore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/common/src/miniventure/game/GameCore.java b/core/common/src/miniventure/game/GameCore.java index d5c579de..be4222f0 100644 --- a/core/common/src/miniventure/game/GameCore.java +++ b/core/common/src/miniventure/game/GameCore.java @@ -27,7 +27,7 @@ /** @noinspection StaticNonFinalField*/ public class GameCore { - public static final Version VERSION = new Version("1.5.7.dev"); + public static final Version VERSION = new Version("1.5.7"); public static final float MAX_DELTA = 0.25f; // the maximum time that the game will clamp getDeltaTime to, to prevent huge jumps after a lag spike.