Skip to content

Commit 6f061f7

Browse files
authored
Merge pull request #671 from MetaMorphic-Digital/dev
Fix discarding of cards
2 parents 3c7ac66 + 64b7742 commit 6f061f7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# TORG Eternity Changelog
22

3+
## 13.26.2 - Bug Fix
4+
5+
- Install this if you want to discard cards from your hand.
6+
37
## 13.26.1 - Bug Fixes
48

59
- Prevent flooding the console with errors when no Encounter is present in the combat tracker.

module/cards/torgeternityPlayerHand.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export default class torgeternityPlayerHand extends foundry.applications.sheets.
200200
break;
201201
case 'discard':
202202
{
203-
if (_event.shiftKey) {
203+
if (event.shiftKey) {
204204
card.recall();
205205
break;
206206
}

0 commit comments

Comments
 (0)