add dev build warning
This commit is contained in:
parent
95ccd004a6
commit
c291ca33f3
|
@ -8,6 +8,7 @@ import java.util.Collection;
|
|||
import net.lax1dude.eaglercraft.v1_8.Display;
|
||||
import net.lax1dude.eaglercraft.v1_8.EagRuntime;
|
||||
import net.lax1dude.eaglercraft.v1_8.EaglercraftRandom;
|
||||
import net.lax1dude.eaglercraft.v1_8.EaglercraftVersion;
|
||||
import net.lax1dude.eaglercraft.v1_8.PointerInputAbstraction;
|
||||
import net.lax1dude.eaglercraft.v1_8.Touch;
|
||||
import net.lax1dude.eaglercraft.v1_8.minecraft.EaglerTextureAtlasSprite;
|
||||
|
@ -160,6 +161,13 @@ public class GuiIngame extends Gui {
|
|||
GlStateManager.enableDepth();
|
||||
GlStateManager.disableLighting();
|
||||
|
||||
if (EaglercraftVersion.isDevBuild) {
|
||||
drawRect(0, 0, i, 10, 0xAAFFFF00);
|
||||
int w = mc.fontRendererObj.getStringWidth("EaglercraftL Dev Build // EaglercraftL Dev Build // EaglercraftL Dev Build");
|
||||
int x = (i - w) / 2;
|
||||
mc.fontRendererObj.drawString("EaglercraftL Dev Build // EaglercraftL Dev Build // EaglercraftL Dev Build", x, 1, 0xFF000000);
|
||||
}
|
||||
|
||||
ItemStack itemstack = this.mc.thePlayer.inventory.armorItemInSlot(3);
|
||||
if (this.mc.gameSettings.thirdPersonView == 0 && itemstack != null
|
||||
&& itemstack.getItem() == Item.getItemFromBlock(Blocks.pumpkin)) {
|
||||
|
|
|
@ -19,6 +19,7 @@ import com.google.common.collect.Sets;
|
|||
|
||||
import net.lax1dude.eaglercraft.v1_8.EagRuntime;
|
||||
import net.lax1dude.eaglercraft.v1_8.EaglerXBungeeVersion;
|
||||
import net.lax1dude.eaglercraft.v1_8.EaglercraftVersion;
|
||||
import net.lax1dude.eaglercraft.v1_8.Keyboard;
|
||||
import net.lax1dude.eaglercraft.v1_8.Mouse;
|
||||
import net.lax1dude.eaglercraft.v1_8.PauseMenuCustomizeState;
|
||||
|
@ -119,6 +120,12 @@ public abstract class GuiScreen extends Gui implements GuiYesNoCallback {
|
|||
* mouseY, renderPartialTicks
|
||||
*/
|
||||
public void drawScreen(int i, int j, float var3) {
|
||||
if (EaglercraftVersion.isDevBuild) {
|
||||
drawRect(0, 0, this.width, 10, 0xAAFFFF00);
|
||||
int w = fontRendererObj.getStringWidth("EaglercraftL Dev Build // EaglercraftL Dev Build // EaglercraftL Dev Build");
|
||||
int x = (this.width - w) / 2;
|
||||
fontRendererObj.drawString("EaglercraftL Dev Build // EaglercraftL Dev Build // EaglercraftL Dev Build", x, 1, 0xFF000000);
|
||||
}
|
||||
for (int k = 0, l = this.buttonList.size(); k < l; ++k) {
|
||||
((GuiButton) this.buttonList.get(k)).drawButton(this.mc, i, j);
|
||||
}
|
||||
|
|
|
@ -10,9 +10,11 @@ public class EaglercraftVersion {
|
|||
/// Customize these to fit your fork:
|
||||
|
||||
public static final String projectForkName = "Eaglercraft Lambda";
|
||||
public static final String projectForkVersion = "1.0.0";
|
||||
public static final String projectForkVersion = "1.1.0 dev";
|
||||
public static final String projectForkVendor = "HoosierTransfer";
|
||||
|
||||
public static final boolean isDevBuild = true;
|
||||
|
||||
public static final String projectForkURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8";
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
@ -20,7 +22,7 @@ public class EaglercraftVersion {
|
|||
public static final String projectOriginName = "EaglercraftX";
|
||||
public static final String projectOriginAuthor = "lax1dude";
|
||||
public static final String projectOriginRevision = "1.9";
|
||||
public static final String projectOriginVersion = "1.0.0";
|
||||
public static final String projectOriginVersion = "u39";
|
||||
|
||||
public static final String projectOriginURL = "https://gitlab.com/lax1dude/eaglercraftx-1.8"; // rest in peace
|
||||
|
||||
|
@ -74,5 +76,4 @@ public class EaglercraftVersion {
|
|||
public static final boolean forceDemoMode = false;
|
||||
|
||||
public static final String localStorageNamespace = "_eaglercraftX";
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue