Properly pass variadic arguments in the dialogue plugin.

This commit is contained in:
shed-
2015-03-02 17:24:44 +03:00
parent 782563267a
commit 98372858c4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ class Player
args[0] = arg.name if arg.kind_of?(QuestStage)
end
result = super(symbol, args)
result = super(symbol, *args)
string = symbol.to_s
if (string.end_with?('_progress'))