Ranged defense fixes again
All checks were successful
Release Creation / build (release) Successful in 43s

This commit is contained in:
2025-09-19 22:30:26 +02:00
parent eedce1a498
commit cb8bcfd9ea
32 changed files with 144 additions and 123 deletions

View File

@@ -143,7 +143,7 @@ export default class LethalFantasyCharacterSheet extends LethalFantasyActorSheet
const data = foundry.applications.ux.TextEditor.implementation.getDragEventData(event)
// Handle different data types
if (data.type === "Item") {
if (data.type === "Item") {
const item = await fromUuid(data.uuid)
return this._onDropItem(item)
}