Make CrashHandler#crashed public
This commit is contained in:
parent
6c6b44ea19
commit
a6e83a25eb
1 changed files with 3 additions and 8 deletions
|
@ -43,17 +43,12 @@ import java.util.*;
|
||||||
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
|
@SuppressWarnings({ "unused", "JavadocDeclaration", "JavadocBlankLines" })
|
||||||
public class CrashHandler {
|
public class CrashHandler {
|
||||||
/**
|
/**
|
||||||
* Hopefully {@code false} :)
|
* Hopefully {@code false} :)<br/>
|
||||||
|
* Note: Switching this to true might cause issues. Just don't do it ^^
|
||||||
*
|
*
|
||||||
* @since 1-alpha0
|
* @since 1-alpha0
|
||||||
*
|
|
||||||
* -- GETTER --
|
|
||||||
* Hopefully {@code false} :)
|
|
||||||
*
|
|
||||||
* @return if the engine is in a crashed state
|
|
||||||
* @since 1-alpha0
|
|
||||||
*/
|
*/
|
||||||
private static boolean crashed = false;
|
public static boolean crashed = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Contains the template used to print a crash report.
|
* Contains the template used to print a crash report.
|
||||||
|
|
Loading…
Reference in a new issue