Skip to content

Commit

Permalink
Fix: prevent filling random notes
Browse files Browse the repository at this point in the history
  • Loading branch information
redweller committed Jan 11, 2022
1 parent 80a8886 commit 46fb190
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions injected/ctracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ const ORCTcombat = (function () {
callForDialog(evtobj);
const delivery = document.getElementById('changeNoteText');
if (!delivery) return;
if (delivery.value[0] != '!') return;
delivery.parentElement.parentElement.style.display = 'none';
if (delivery) {
let changeNote = {}
Expand Down

0 comments on commit 46fb190

Please sign in to comment.