We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 967f90b commit 0441979Copy full SHA for 0441979
src/model/Match.ts
@@ -95,6 +95,16 @@ export class Match {
95
this.tools.watermarkInfo.customTextEnabled =
96
this.tools.watermarkInfo.customTextEnabled && !!this.orgIsSupporter;
97
98
+ if (
99
+ this.tools.roundWinBox.type == "sponsors" &&
100
+ this.tools.roundWinBox.sponsors.length > 1 &&
101
+ !this.orgIsSupporter
102
+ ) {
103
+ this.tools.roundWinBox.sponsors = [this.tools.roundWinBox.sponsors[0]];
104
+ this.tools.roundWinBox.sponsors[0].roundCeremony = ["all"];
105
+ this.tools.roundWinBox.sponsors[0].wonTeam = "all";
106
+ }
107
+
108
if (process.env.USE_BACKEND === "true") {
109
this.organizationId = data.organizationId || "";
110
this.updateNameOverridesAndPlayercams().then(() => {});
0 commit comments