Skip to content

Commit

Permalink
Change sustainability bonus
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasBottone committed May 13, 2023
1 parent f0c2e6d commit 83f2acb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/field.ts
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ import fs from "fs";
import type { GoogleSpreadsheetRow } from "google-spreadsheet";
import type { Match } from "./match";

const SUSTAINABILITY_BONUS_RP = 7;
const SUSTAINABILITY_BONUS_RP = 9;
const ACTIVATION_BONUS_RP = 32;

export async function getMatchData(
@@ -165,5 +165,5 @@ export async function getMatchData(

export function setMatchNumber(matchNumber: number) {
fs.existsSync("TourneyData/") || fs.mkdirSync("TourneyData/");
fs.writeFileSync("TourneyData/MatchNumber.txt", String(matchNumber));
fs.writeFileSync("TourneyData/MatchNumber.txt", `Quals ${matchNumber}`);
}

0 comments on commit 83f2acb

Please sign in to comment.