/* global game */ /** * Define all game settings here * @return {Promise} */ export const loadSettings = async function () { (game as Game).settings.register("midgard5", "automatedPP", { name: "Automatische Praxispunkte", hint: "Falls aktiv, werden Praxispunkte automatisch angerechnet.", scope: "world", config: true, default: true, type: Boolean, }); };