Skip to content

Commit

Permalink
fix: Default model version setting value (#288)
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Potts <[email protected]>
  • Loading branch information
misterpotts authored Feb 24, 2024
1 parent 2e01046 commit faee73f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
title: Fabricate 0.10.22
title: Fabricate 0.10.23
email: [email protected]
description: >-
End user documentation for the Foundry Virtual Tabletop (VTT) Module, "Fabricate".
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fabricate",
"version": "0.10.22",
"version": "0.10.23",
"description": "A system-agnostic, flexible crafting module for FoundryVT",
"main": "index.js",
"type": "module",
Expand Down
3 changes: 2 additions & 1 deletion src/scripts/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {FabricateUserInterfaceAPI} from "./api/FabricateUserInterfaceAPI";
import {DefaultFabricatePatreonAPIFactory} from "./patreon/PatreonAPIFactory";
import {DefaultPatreonFeature} from "./patreon/PatreonFeature";
import {FabricatePatreonAPI} from "./patreon/FabricatePatreonAPI";
import {SettingVersion} from "./repository/migration/SettingVersion";

let fabricateAPI: FabricateAPI;
let fabricateUserInterfaceAPI: FabricateUserInterfaceAPI;
Expand All @@ -38,7 +39,7 @@ Hooks.once('ready', async () => {
[Properties.settings.essences.key, { entities: {}, collections: {} }],
[Properties.settings.components.key, { entities: {}, collections: {} }],
[Properties.settings.craftingSystems.key, { entities: {}, collections: {} }],
[Properties.settings.modelVersion.key, ""],
[Properties.settings.modelVersion.key, SettingVersion.V3],
])
});

Expand Down

0 comments on commit faee73f

Please sign in to comment.