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 @Getter
@Field @Field
private final int maximumTeamMembers; private final int maximumTeamMembers;
@Getter
@Field(nullable = true) @Field(nullable = true)
private final SchematicType schematicType; private final SchematicType schemType;
@Field @Field
private final boolean publicSchemsOnly; private final boolean publicSchemsOnly;
@Field @Field
@ -69,4 +68,8 @@ public class Event {
public boolean spectateSystem(){ public boolean spectateSystem(){
return spectateSystem; return spectateSystem;
} }
public SchematicType getSchematicType() {
return schemType;
}
} }