Skip to content

Commit

Permalink
Update auto.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Dounford-Felipe committed Nov 18, 2023
1 parent 575f5e4 commit 9ba8a02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auto.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name DHM - Idle Again
// @namespace http://tampermonkey.net/
// @version 1.4.5
// @version 1.4.5.1
// @description Automate most of DHM features
// @author Felipe Dounford
// @require https://greasyfork.org/scripts/461221-hack-timer-js-by-turuslan/code/Hack%20Timerjs%20By%20Turuslan.js?version=1159560
Expand Down Expand Up @@ -2176,7 +2176,7 @@ const showMessage = (msg, sender) => {
senderElement.innerText = sender + ": ";
messageContainer.appendChild(senderElement);
var message = document.createElement('span');
message.innerText = msg;
message.innerHTML = msg;
messageContainer.style.wordWrap = "break-word";
messageContainer.appendChild(message);
var messageArea = document.getElementById('messages');
Expand Down

0 comments on commit 9ba8a02

Please sign in to comment.