Skip to content

Commit

Permalink
Fix a typo in queue commands
Browse files Browse the repository at this point in the history
How did this exist without anyone complaining
  • Loading branch information
mcmonkey4eva committed Nov 6, 2014
1 parent 7745179 commit 69216a7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -30,7 +30,7 @@ public void queueTag(ReplaceableTagEvent event) {
// Handle <queue[id]. ...> tags

if (event.hasNameContext()) {
if (ScriptQueue._queueExists(event.getNameContext()))
if (!ScriptQueue._queueExists(event.getNameContext()))
return;
else
event.setReplaced(ScriptQueue._getExistingQueue(event.getNameContext())
Expand Down

0 comments on commit 69216a7

Please sign in to comment.