Remove the devMode settings and use the inDev flag instead

This commit is contained in:
Oliver 2025-12-24 20:21:32 -07:00
parent f1b23c54d8
commit 8ea22d7eaf
6 changed files with 3 additions and 39 deletions

View file

@ -1,17 +0,0 @@
export function registerDevSettings() {
game.settings.register(`ripcrypt`, `devMode`, {
scope: `client`,
type: Boolean,
config: false,
default: false,
requiresReload: false,
});
game.settings.register(`ripcrypt`, `defaultTab`, {
name: `Default Tab`,
scope: `client`,
type: String,
config: game.settings.get(`ripcrypt`, `devMode`),
requiresReload: false,
});
};