mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
23 lines
582 B
Java
23 lines
582 B
Java
|
package com.minelittlepony.unicopia;
|
||
|
|
||
|
import com.minelittlepony.MineLittlePony;
|
||
|
|
||
|
public final class MineLP {
|
||
|
private static boolean checkComplete;
|
||
|
private static boolean modIsActive;
|
||
|
|
||
|
/**
|
||
|
* Returns true if mine little pony is present. That's all we need.
|
||
|
*/
|
||
|
public static boolean modIsActive() {
|
||
|
if (!checkComplete) {
|
||
|
try {
|
||
|
MineLittlePony.getConfig();
|
||
|
modIsActive = true;
|
||
|
} catch (Exception e) {
|
||
|
modIsActive = false;
|
||
|
}
|
||
|
}
|
||
|
return modIsActive;
|
||
|
}
|
||
|
}
|