We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97aec02 commit cf0c553Copy full SHA for cf0c553
js/Client.js
@@ -173,7 +173,8 @@ Client.prototype.drawText = function () {
173
// RipURQ and URQ_DOS do not support HTML
174
if (['ripurq', 'dosurq'].includes(Game.getVar('urq_mode'))) {
175
// <br> tag can be generated by #/$ construct from URQL code
176
- content = getEscapedHtmlWithAllowedTags(content, ['br']);
+ // <img> tag can be generated by the image operator from URQL code
177
+ content = getEscapedHtmlWithAllowedTags(content, ['br', 'img']);
178
}
179
var div = $('<div>').html(content);
180
0 commit comments