diff --git a/CHANGELOG.md b/CHANGELOG.md index c008673fc..44ef386a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Next Release +- Set a default icon for stellar objects, at least when changing their subtype + ## 1.24.8 - Expose `SFCharacterMoveSheet` to macro authors as `CONFIG.IRONSWORN.applications.SFCharacterMoveSheet` diff --git a/src/module/vue/sf-locationsheet.vue b/src/module/vue/sf-locationsheet.vue index 9f285553c..b51e304c9 100644 --- a/src/module/vue/sf-locationsheet.vue +++ b/src/module/vue/sf-locationsheet.vue @@ -245,6 +245,9 @@ function randomImage(subtype, klass): string | void { '' )}.webp` } + if (subtype === 'star') { + return 'systems/foundry-ironsworn/assets/icons/stellar-object.svg' + } if (subtype === 'sunderedsettlement') { return `systems/foundry-ironsworn/assets/icons/settlement-si.svg` }