ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/util/Util.java

44 lines
1.1 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("Util.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.util;
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import net.minecraftforge.fml.loading.FMLLoader;
2019-05-02 09:08:15 +02:00
public final class Util {
@Deprecated
public static final int WILDCARD = Short.MAX_VALUE;//OreDictionary.WILDCARD_VALUE;
@Deprecated
public static final int BUCKET = 1000;
2019-05-02 09:08:15 +02:00
public static boolean isDevVersion() {
return ActuallyAdditions.VERSION.equals("@VERSION@");
2015-07-01 21:32:48 +02:00
}
2019-02-27 19:53:05 +01:00
2019-05-02 09:08:15 +02:00
public static boolean isClient() {
return FMLLoader.getDist().isClient();
}
2019-05-02 09:08:15 +02:00
private static String[] splitVersion() {
return ActuallyAdditions.VERSION.split("-");
}
2019-05-02 09:08:15 +02:00
public static String getMcVersion() {
return splitVersion()[0];
}
2019-05-02 09:08:15 +02:00
public static String getMajorModVersion() {
return splitVersion()[1].substring(1);
}
}