Skip to content

Commit

Permalink
closes #485
Browse files Browse the repository at this point in the history
  • Loading branch information
Muttley committed Aug 23, 2024
1 parent f0781cb commit 5df08d4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# v11.13.0

#### Chores
- [#478] Merge new French, Polish and Portuguese/Brazilian translation updates from Crowdin
- [#485] Global Die deprecated, should now be accessed as foundry.dice.terms.Die

---

# v11.12.2

#### Compatibility
Expand Down
2 changes: 1 addition & 1 deletion system/src/roller/DieFalloutDamage.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export class DieFalloutDamage extends Die {
export class DieFalloutDamage extends foundry.dice.terms.Die {
constructor(termData) {
termData.faces = 6;
super(termData);
Expand Down
2 changes: 1 addition & 1 deletion system/src/roller/DieFalloutLocation.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export class DieFalloutLocation extends Die {
export class DieFalloutLocation extends foundry.dice.terms.Die {
constructor(termData) {
termData.faces = 20;
super(termData);
Expand Down

0 comments on commit 5df08d4

Please sign in to comment.