Skip to content

Commit

Permalink
Evil fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ChasarooniZ committed Apr 2, 2024
1 parent 7a49d79 commit 884210c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Hooks.once("ready", function () {
game.rulesLawyer = {
create: function (evil = false) {
const effectData = {
vid: data.evil ? RULES_LAWYER_EVIL_VID : RULES_LAWYER_VID,
sfx: data.evil ? RULES_LAWYER_EVIL_SFX : RULES_LAWYER_SFX,
vid: evil ? RULES_LAWYER_EVIL_VID : RULES_LAWYER_VID,
sfx: evil ? RULES_LAWYER_EVIL_SFX : RULES_LAWYER_SFX,
};
createRulesLawyerEffect(
effectData.vid,
Expand Down

0 comments on commit 884210c

Please sign in to comment.