Fix incomplete comment in encounter-phase

This commit is contained in:
Sirz Benjie 2025-05-28 17:54:24 -05:00
parent b5bf987bc4
commit 6a217f2062
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

View File

@ -47,7 +47,7 @@ import { WEIGHT_INCREMENT_ON_SPAWN_MISS } from "#app/data/mystery-encounters/mys
import { getNatureName } from "#app/data/nature";
export class EncounterPhase extends BattlePhase {
// Union type is necessary as these
// Union type is necessary as this is subclassed, and typescript will otherwise complain
protected readonly phaseName: "EncounterPhase" | "NextEncounterPhase" | "NewBiomeEncounterPhase" = "EncounterPhase";
private loaded: boolean;