MultiSchemTypes #403
@ -74,7 +74,7 @@ Schematic:
|
|||||||
PasteAligned: false # defaults to false if missing
|
PasteAligned: false # defaults to false if missing
|
||||||
# If only public schematics are allowed
|
# If only public schematics are allowed
|
||||||
OnlyPublicSchematics: false # defaults to false if missing
|
OnlyPublicSchematics: false # defaults to false if missing
|
||||||
# If the public only force should be completely disabled # TODO: I think this value is now obsolete!
|
# If the public only force should be completely disabled
|
||||||
IgnorePublicOnly: false # defaults to false if missing
|
IgnorePublicOnly: false # defaults to false if missing
|
||||||
# If obsidian and bedrock should be replaced during PRE_RUNNING
|
# If obsidian and bedrock should be replaced during PRE_RUNNING
|
||||||
ReplaceObsidianBedrock: false # defaults to false if missing
|
ReplaceObsidianBedrock: false # defaults to false if missing
|
||||||
|
@ -143,9 +143,9 @@ public class Fight {
|
|||||||
if (Config.OnlyPublicSchematics) {
|
if (Config.OnlyPublicSchematics) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (redTeam.isPublicsOnly() || blueTeam.isPublicsOnly()) {
|
if (Config.IgnorePublicOnly) {
|
||||||
YoyoNow markierte diese Unterhaltung als gelöst
Veraltet
|
|||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
return redTeam.isPublicsOnly() || blueTeam.isPublicsOnly();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren
Hier fehlt wie früher die Prüfung, ob es ein Event ist (wobei dann ebenfalls IgnorePublicOnly gilt). Wenn es ein Public-Only Turnier ist, wird das bereits über OnlyPublicSchematics separat geregelt.