Skip to content

Commit

Permalink
fix: Sheet fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xdy committed Jul 2, 2020
1 parent 2e24eac commit 57ba2df
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/module/register-actors.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {twodsixActorSheet} from "./actor/actor-sheet";
import {twodsixActorSheet} from "./actors/actor-sheet";
export default function registerActors(){
Actors.unregisterSheet("core", ActorSheet);
Actors.registerSheet("twodsix", twodsixActorSheet, {makeDefault: true});
Expand Down
2 changes: 1 addition & 1 deletion src/module/register-sheets.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {twodsixItemSheet} from './item/item-sheet';
import {twodsixItemSheet} from './items/item-sheet';

export default function registerItemSheets() {
Items.unregisterSheet("core", ItemSheet);
Expand Down
5 changes: 3 additions & 2 deletions src/twodsix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@
import {registerSettings} from './module/settings';
import loadTemplates from './module/templates';
import registerHandlebarsHelpers from './module/handlebars';
import TwodsixActor from './module/actor/actor';
import TwodsixItem from "./module/item/item";
import TwodsixActor from './module/actors/actor';
import TwodsixItem from "./module/items/item";
import {TwodsixSystem} from './module/twodsix-system';
import registerActors from './module/register-actors';
import registerItemSheets from './module/register-sheets';

require('./styles/twodsix.scss');

/* ------------------------------------ */
/* Initialize system */
Expand Down
2 changes: 1 addition & 1 deletion static/system.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
"primaryTokenAttribute":"hits",
"readme": "",
"styles": [
"./styles/twodsix.scss"
"./styles/twodsix.css"
],
"templateVersion": 2
}
File renamed without changes.
File renamed without changes.

0 comments on commit 57ba2df

Please sign in to comment.