Skip to content
This repository has been archived by the owner on Jan 18, 2022. It is now read-only.

Commit

Permalink
Fixed Grapple roll
Browse files Browse the repository at this point in the history
  • Loading branch information
Rughalt committed Oct 22, 2020
1 parent 8c5db20 commit 68b7f8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion module/actor/entity.js
Original file line number Diff line number Diff line change
Expand Up @@ -3436,7 +3436,7 @@ export class ActorPF extends Actor {
return DicePF.d20Roll({
event: options.event,
parts: ["@mod - @drain"],
data: {mod: this.data.data.attributes.cmb.total, drain: this.data.data.attributes.energyDrain},
data: {mod: this.data.data.attributes.cmb.total, drain: this.data.data.attributes.energyDrain || 0},
title: game.i18n.localize("D35E.CMB"),
speaker: ChatMessage.getSpeaker({actor: this}),
takeTwenty: false,
Expand Down
2 changes: 1 addition & 1 deletion system.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "D35E",
"title": "DND 3.5e",
"description": "DND 3.5e implementation for Foundry VTT. Aiming to provide 100% SRD coverage.",
"version": "0.86.4",
"version": "0.86.5",
"author": "Rughalt",
"templateVersion": 2,
"scripts": [],
Expand Down

0 comments on commit 68b7f8c

Please sign in to comment.