mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-17 13:13:12 +01:00
0be671544a
Fixed Tools not working on blocks like Hardened Clay
16 lines
472 B
Java
16 lines
472 B
Java
package ellpeck.actuallyadditions.util;
|
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
public class ModUtil{
|
|
|
|
public static final String VERSION = "1.7.10-0.0.7.6";
|
|
|
|
public static final String MOD_ID = "ActuallyAdditions";
|
|
public static final String NAME = "Actually Additions";
|
|
public static final String MOD_ID_LOWER = MOD_ID.toLowerCase();
|
|
|
|
public static final Logger LOGGER = LogManager.getLogger(MOD_ID);
|
|
|
|
}
|