Compare commits
2 commits
feature/it
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 456109ebb0 | |||
| d4150ff2e0 |
2 changed files with 4 additions and 2 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
import { PlayerSheet } from "./PlayerSheet.mjs";
|
import { PlayerSheet } from "./PlayerSheet.mjs";
|
||||||
|
|
||||||
|
const { deepClone } = foundry.utils;
|
||||||
|
|
||||||
export class AttributeOnlyPlayerSheet extends PlayerSheet {
|
export class AttributeOnlyPlayerSheet extends PlayerSheet {
|
||||||
// #region Options
|
// #region Options
|
||||||
static DEFAULT_OPTIONS = {
|
static DEFAULT_OPTIONS = {
|
||||||
|
|
@ -9,7 +11,7 @@ export class AttributeOnlyPlayerSheet extends PlayerSheet {
|
||||||
};
|
};
|
||||||
|
|
||||||
static get PARTS() {
|
static get PARTS() {
|
||||||
const parts = super.PARTS;
|
const parts = deepClone(super.PARTS);
|
||||||
delete parts.content;
|
delete parts.content;
|
||||||
return parts;
|
return parts;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"id": "taf",
|
"id": "taf",
|
||||||
"title": "Text-Based Actors",
|
"title": "Text-Based Actors",
|
||||||
"description": "An intentionally minimalist system that enables you to play rules-light games without getting in your way!",
|
"description": "An intentionally minimalist system that enables you to play rules-light games without getting in your way!",
|
||||||
"version": "2.6.0",
|
"version": "2.6.1",
|
||||||
"download": "",
|
"download": "",
|
||||||
"manifest": "",
|
"manifest": "",
|
||||||
"url": "https://git.varify.ca/Foundry/taf",
|
"url": "https://git.varify.ca/Foundry/taf",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue