Skip to content

Commit 461aa26

Browse files
2.1.42
1 parent 0488c4e commit 461aa26

5 files changed

Lines changed: 13 additions & 17 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
"manifest": "'"${FOUNDRY_MANIFEST}"'",
9797
"download": "'"${FOUNDRY_DOWNLOAD}"'",
9898
"notes": "https://github.com/${{ github.repository }}/releases/tag/${{ github.event.release.tag_name }}",
99-
"compatibility": { "minimum": "13.346", "verified": "13.348", "maximum": "13" }
99+
"compatibility": { "minimum": "13.346", "verified": "13.351", "maximum": "13" }
100100
}
101101
}'
102102

CHANGELOG.md

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

3+
## [v2.1.42] - 2026-04-08
4+
- Updates:
5+
- 5e 5.3: This is an as-is release for V13 + 5e 5.3.x. I will not be doing any 5.3 bug fixes moving forward, it is only for those that have updated and want to try it out. From some brief testing things seem to be okay, but my recommendation is to not update to 5.3. The focus of work for GPS will be on V14 + 5e 6.x
6+
- Bugfixes:
7+
- Shield Master: Resolved incorrect variable for incapacitated check
8+
39
## [v2.1.41] - 2026-03-31
410
- Updates:
511
- War Caster: Allow creatureOrObject types for the Opportunity Attack integration so they show up as valid spells

module.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"ko-fi": "https://ko-fi.com/gambit07"
1111
}
1212
],
13-
"version": "2.1.41",
13+
"version": "2.1.42",
1414
"compatibility": {
1515
"minimum": 13.346,
1616
"verified": 13.351,
@@ -218,7 +218,7 @@
218218
"compatibility": {
219219
"minimum": "5.2.5",
220220
"verified": "5.2.5",
221-
"maximum": "5.2.99"
221+
"maximum": "5.3.99"
222222
}
223223
}
224224
],
@@ -328,7 +328,7 @@
328328
},
329329
"url": "https://github.com/gambit07/gambits-premades",
330330
"manifest": "https://github.com/gambit07/gambits-premades/releases/latest/download/module.json",
331-
"download": "https://github.com/gambit07/gambits-premades/releases/download/2.1.41/module.zip",
331+
"download": "https://github.com/gambit07/gambits-premades/releases/download/2.1.42/module.zip",
332332
"languages": [
333333
{
334334
"lang": "en",

release_notes.txt

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,4 @@
11
- Updates:
2-
- War Caster: Allow creatureOrObject types for the Opportunity Attack integration so they show up as valid spells
2+
- 5e 5.3: This is an as-is release for V13 + 5e 5.3.x. I will not be doing any 5.3 bug fixes moving forward, it is only for those that have updated and want to try it out. From some brief testing things seem to be okay, but my recommendation is to not update to 5.3. The focus of work for GPS will be on V14 + 5e 6.x
33
- Bugfixes:
4-
- Dread Counterspell: A number of bugfixes, should now work for spells cast at or over 5th level
5-
- Reckless Attack 2024: Fix the macropass check not being updated to preAttackRollConfig even though the effect was
6-
- Protection: Resolved disadvantage not being applied when homebrew rule was off
7-
- Instinctive Charm: Resolved disadvantage not being applied
8-
- Enemies Abound: Resolved macroItem not resolving the effects item and switched to a different method to allow damaged saves to work
9-
- gpsFreeSpellUse: Resolved an invalid variable name post-localization causing the function to fail
10-
- Torch: Resolved Midi's new ItemMacro Init hook pushing dialogs when it shouldn't
11-
- Candle: Resolved Midi's new ItemMacro Init hook pushing dialogs when it shouldn't
12-
- Lamp: Resolved Midi's new ItemMacro Init hook pushing dialogs when it shouldn't
13-
- Bullseye Lantern: Resolved Midi's new ItemMacro Init hook pushing dialogs when it shouldn't
14-
- Hooded Lantern: Resolved Midi's new ItemMacro Init hook pushing dialogs when it shouldn't
4+
- Shield Master: Resolved incorrect variable for incapacitated check

scripts/automations2024/genericFeatures/shieldMaster2024.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export async function shieldMaster2024({ speaker, actor, token, character, item,
136136
if(debugEnabled) game.gps.logInfo(`${item.name} Interpose Shield for ${actor.name} failed at reaction available`);
137137
return;
138138
}
139-
if(MidiQOL.checkIncapacitated(effectOriginToken)) {
139+
if(MidiQOL.checkIncapacitated(actor)) {
140140
if(debugEnabled) game.gps.logInfo(`${item.name} Interpose Shield for ${actor.name} failed because token is incapacitated`);
141141
return;
142142
}

0 commit comments

Comments
 (0)