Remove features that are obsolete in 0.8

This commit is contained in:
2021-05-20 12:43:23 +02:00
parent 9a40e53d2e
commit 42529d3df6
8 changed files with 5 additions and 252 deletions

View File

@@ -1,10 +1,5 @@
export const settingsKey = "smart-doors";
function reloadGM() {
if (game.user.isGM)
location.reload()
}
export function registerSettings() {
game.settings.register(settingsKey, "dataVersion", {
scope: "world",
@@ -21,24 +16,6 @@ export function registerSettings() {
default: 1.5,
onChange: () => location.reload()
})
game.settings.register(settingsKey, "doorControlOutline", {
name: "smart-doors.settings.doorControlOutline.name",
hint: "smart-doors.settings.doorControlOutline.hint",
scope: "client",
config: true,
type: Boolean,
default: true,
onChange: () => location.reload(),
})
game.settings.register(settingsKey, "highlightSecretDoors", {
name: "smart-doors.settings.highlightSecretDoors.name",
hint: "smart-doors.settings.highlightSecretDoors.hint",
scope: "world",
config: true,
type: Boolean,
default: true,
onChange: reloadGM,
})
game.settings.register(settingsKey, "toggleSecretDoors", {
name: "smart-doors.settings.toggleSecretDoors.name",
hint: "smart-doors.settings.toggleSecretDoors.hint",