Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Ursprung
148067e42b
Commit
e327c939f7
@ -81,9 +81,9 @@ public class EventCommand extends BasicCommand {
|
|||||||
if(now.isBefore(e.getDeadline().toInstant())) {
|
if(now.isBefore(e.getDeadline().toInstant())) {
|
||||||
Message.send("EVENT_COMING_DEADLINE", player, e.getDeadline());
|
Message.send("EVENT_COMING_DEADLINE", player, e.getDeadline());
|
||||||
}
|
}
|
||||||
String checkType = e.getSchemType();
|
String schemType = e.getSchemType();
|
||||||
if (checkType != null) {
|
if (schemType != null) {
|
||||||
SchematicType schematicType = SchematicType.fromDB(checkType);
|
SchematicType schematicType = SchematicType.fromDB(schemType);
|
||||||
if (schematicType != null && schematicType.deadline() != null && now.isBefore(schematicType.deadline().toInstant())) {
|
if (schematicType != null && schematicType.deadline() != null && now.isBefore(schematicType.deadline().toInstant())) {
|
||||||
Message.send("EVENT_COMING_SCHEM_DEADLINE", player, e.getDeadline());
|
Message.send("EVENT_COMING_SCHEM_DEADLINE", player, e.getDeadline());
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,6 @@ public class SchematicType {
|
|||||||
List<SchematicType> tmpTypes = new LinkedList<>();
|
List<SchematicType> tmpTypes = new LinkedList<>();
|
||||||
Map<String, SchematicType> tmpFromDB = new HashMap<>();
|
Map<String, SchematicType> tmpFromDB = new HashMap<>();
|
||||||
Map<SchematicType, SchematicType> tmpFightType = new HashMap<>();
|
Map<SchematicType, SchematicType> tmpFightType = new HashMap<>();
|
||||||
Map<Integer, SchematicType> tmpEventType = new HashMap<>();
|
|
||||||
|
|
||||||
tmpTypes.add(Normal);
|
tmpTypes.add(Normal);
|
||||||
tmpFromDB.put(Normal.name().toLowerCase(), Normal);
|
tmpFromDB.put(Normal.name().toLowerCase(), Normal);
|
||||||
@ -94,11 +93,6 @@ public class SchematicType {
|
|||||||
if(checktype != null)
|
if(checktype != null)
|
||||||
tmpFightType.put(checktype, current);
|
tmpFightType.put(checktype, current);
|
||||||
tmpFromDB.put(type.toLowerCase(), current);
|
tmpFromDB.put(type.toLowerCase(), current);
|
||||||
|
|
||||||
Integer eventID = config.get("eventID", null);
|
|
||||||
if (eventID != null) {
|
|
||||||
tmpEventType.put(eventID, current);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren