Updated to 2024.4.6.1

This commit is contained in:
thenetworkgrinch
2024-01-22 15:11:18 -06:00
parent 7c76cffc78
commit a20a6b83af
120 changed files with 923 additions and 603 deletions

View File

@@ -49,23 +49,23 @@ public class Alert
/**
* Group of the alert.
*/
private static Map<String, SendableAlerts> groups = new HashMap<String, SendableAlerts>();
private static Map<String, SendableAlerts> groups = new HashMap<String, SendableAlerts>();
/**
* Type of the Alert to raise.
*/
private final AlertType type;
private final AlertType type;
/**
* Activation state of alert.
*/
private boolean active = false;
private boolean active = false;
/**
* When the alert was raised.
*/
private double activeStartTime = 0.0;
private double activeStartTime = 0.0;
/**
* Text of the alert.
*/
private String text;
private String text;
/**
* Creates a new Alert in the default group - "Alerts". If this is the first to be instantiated, the appropriate
@@ -213,6 +213,7 @@ public class Alert
/**
* Get alerts based off of type.
*
* @param type Type of alert to fetch.
* @return Active alert strings.
*/