Fix v13.341 issues to prep for release
This commit is contained in:
parent
d5680bb209
commit
9739995a12
6 changed files with 10 additions and 7 deletions
|
|
@ -7,7 +7,7 @@ import { Logger } from "../../utils/Logger.mjs";
|
|||
|
||||
const { HandlebarsApplicationMixin } = foundry.applications.api;
|
||||
const { ActorSheetV2 } = foundry.applications.sheets;
|
||||
const { ContextMenu } = foundry.applications.ui;
|
||||
const { ContextMenu } = foundry.applications.ux;
|
||||
const { deepClone } = foundry.utils;
|
||||
|
||||
export class CraftCardV1 extends GenericAppMixin(HandlebarsApplicationMixin(ActorSheetV2)) {
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ import { PopoverEventManager } from "../../utils/PopoverEventManager.mjs";
|
|||
|
||||
const { HandlebarsApplicationMixin } = foundry.applications.api;
|
||||
const { ActorSheetV2 } = foundry.applications.sheets;
|
||||
const { ContextMenu } = foundry.applications.ui;
|
||||
const { ContextMenu } = foundry.applications.ux;
|
||||
const { deepClone } = foundry.utils;
|
||||
|
||||
export class SkillsCardV1 extends GenericAppMixin(HandlebarsApplicationMixin(ActorSheetV2)) {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import { Logger } from "../../utils/Logger.mjs";
|
|||
|
||||
const { HandlebarsApplicationMixin } = foundry.applications.api;
|
||||
const { ActorSheetV2 } = foundry.applications.sheets;
|
||||
const { ContextMenu } = foundry.applications.ui;
|
||||
const { ContextMenu } = foundry.applications.ux;
|
||||
|
||||
export class StatsCardV1 extends GenericAppMixin(HandlebarsApplicationMixin(ActorSheetV2)) {
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import { localizer } from "../utils/Localizer.mjs";
|
|||
import { Logger } from "../utils/Logger.mjs";
|
||||
|
||||
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
|
||||
const { ContextMenu } = foundry.applications.ui;
|
||||
const { ContextMenu } = foundry.applications.ux;
|
||||
const { FatePath } = gameTerms;
|
||||
|
||||
const CompassRotations = {
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ export function registerMetaSettings() {
|
|||
game.settings.register(`ripcrypt`, `dc`, {
|
||||
scope: `world`,
|
||||
type: Number,
|
||||
default: 5,
|
||||
config: false,
|
||||
requiresReload: false,
|
||||
onChange: () => {
|
||||
|
|
@ -17,7 +18,7 @@ export function registerMetaSettings() {
|
|||
game.settings.register(`ripcrypt`, `sandsOfFate`, {
|
||||
scope: `world`,
|
||||
type: Number,
|
||||
initial: 8,
|
||||
default: 8,
|
||||
config: false,
|
||||
requiresReload: false,
|
||||
onChange: async () => {
|
||||
|
|
@ -44,7 +45,7 @@ export function registerMetaSettings() {
|
|||
type: String,
|
||||
config: false,
|
||||
requiresReload: false,
|
||||
initial: `friendly`,
|
||||
default: `friendly`,
|
||||
onChange: async () => {
|
||||
await game.combat.setupTurns();
|
||||
await ui.combat.render({ parts: [ `tracker` ] });
|
||||
|
|
@ -54,7 +55,7 @@ export function registerMetaSettings() {
|
|||
game.settings.register(`ripcrypt`, `firstLoadFinished`, {
|
||||
scope: `world`,
|
||||
type: Boolean,
|
||||
initial: false,
|
||||
default: false,
|
||||
requiresReload: false,
|
||||
});
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
export function registerUserSettings() {
|
||||
/* ! Non-Functional
|
||||
game.settings.register(`ripcrypt`, `abbrAccess`, {
|
||||
name: `RipCrypt.setting.abbrAccess.name`,
|
||||
hint: `RipCrypt.setting.abbrAccess.hint`,
|
||||
|
|
@ -8,6 +9,7 @@ export function registerUserSettings() {
|
|||
default: false,
|
||||
requiresReload: false,
|
||||
});
|
||||
*/
|
||||
|
||||
game.settings.register(`ripcrypt`, `condensedRange`, {
|
||||
name: `RipCrypt.setting.condensedRange.name`,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue