Fix Event SchemType
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
Lixfel 2022-11-30 14:22:50 +01:00
Ursprung 4706c1525c
Commit 746ae701d8

Datei anzeigen

@ -55,9 +55,8 @@ public class Event {
@Getter
@Field
private final int maximumTeamMembers;
@Getter
@Field(nullable = true)
private final SchematicType schematicType;
private final SchematicType schemType;
@Field
private final boolean publicSchemsOnly;
@Field
@ -69,4 +68,8 @@ public class Event {
public boolean spectateSystem(){
return spectateSystem;
}
public SchematicType getSchematicType() {
return schemType;
}
}