Update class imports to use fully qualified Foundry paths

This commit is contained in:
Alexander Minges 2025-05-02 11:53:38 +02:00
parent c26574d2d1
commit 2a797ed8ed
Signed by: Athemis
GPG key ID: 31FBDEF92DDB162B
10 changed files with 41 additions and 23 deletions

View file

@ -40,7 +40,7 @@ export function getCanvas() {
* @returns {Game}
*/
export function getGame() {
enforce(game instanceof Game, "Game is not initialized yet.");
enforce(game instanceof foundry.Game, "Game is not initialized yet.");
return game;
}