Skip to content

Commit 2d6480e

Browse files
committed
Change the syntax of links with drop-down menus: do not automatically add the underscore character
1 parent 72cc265 commit 2d6480e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/Parser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ Parser.prototype.openLinks = function(line) {
257257
var action = '';
258258
var label;
259259
for (var i = 0; i < command2.length; i++) {
260-
label = command + '_' + command2[i].trim();
260+
label = command + command2[i].trim();
261261
if (Game.getVar('hide_' + label) > 0) {
262262
continue;
263263
}

0 commit comments

Comments
 (0)