A repository for a FoundryVTT plugin for Kingmaker homebrew.

Fixing label for Kingdom Sheet not showing

+4 -2
+2 -1
public/lang/en.json
··· 6 6 "settlements": "Settlements", 7 7 "relations": "Relations", 8 8 "effects": "Effects" 9 - } 9 + }, 10 + "kingdom-title": "Kingdom Sheet" 10 11 } 11 12 }
+2 -1
src/kingdom-sheet.ts
··· 23 23 foundry.documents.collections.Actors.registerSheet("pf2e", KingdomSheet, { 24 24 types: [ 25 25 "npc" 26 - ] 26 + ], 27 + label: (game as foundry.Game).i18n!.localize("kingdom-homebrew.kingdom-title") 27 28 }); 28 29 } 29 30