mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-21 23:13:39 +02:00
Inverted from isImage to isIcon. Should be more logical for users
This commit is contained in:
parent
51e681cef9
commit
cce86c7032
8 changed files with 33 additions and 31 deletions
|
|
@ -114,11 +114,11 @@ Hooks.once('init', () => {
|
|||
images: {
|
||||
full: {
|
||||
value: 'systems/daggerheart/assets/icons/domains/sage.svg',
|
||||
isPath: true
|
||||
isIcon: false
|
||||
},
|
||||
empty: {
|
||||
value: 'systems/daggerheart/assets/icons/domains/sage.svg',
|
||||
isPath: true
|
||||
isIcon: false
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
@ -132,12 +132,12 @@ Hooks.once('init', () => {
|
|||
images: {
|
||||
full: {
|
||||
value: 'icons/magic/fire/barrier-wall-explosion-orange.webp',
|
||||
isPath: true,
|
||||
isIcon: false,
|
||||
noColorFilter: true
|
||||
},
|
||||
empty: {
|
||||
value: 'icons/magic/fire/barrier-wall-flame-ring-blue.webp',
|
||||
isPath: true,
|
||||
isIcon: false,
|
||||
noColorFilter: true
|
||||
}
|
||||
}
|
||||
|
|
@ -151,10 +151,12 @@ Hooks.once('init', () => {
|
|||
label: 'Hunger',
|
||||
images: {
|
||||
full: {
|
||||
value: 'fa-solid fa-burger'
|
||||
value: 'fa-solid fa-burger',
|
||||
isIcon: true
|
||||
},
|
||||
empty: {
|
||||
value: 'fa-regular fa-burger'
|
||||
value: 'fa-regular fa-burger',
|
||||
isIcon: true
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue