View Single Post
03-17-15, 08:49 AM   #6
Elkano
A Flamescale Wyrmkin
 
Elkano's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2005
Posts: 131
if it's really caused by replacing that global string, you could also try something that is iirc not part of standard Lua but included in WoW: changing the arguments' order

since the original string has the amount before the item's name, that's the order the arguments are passed to format. So try:
Lua Code:
  1. ERR_QUEST_REWARD_ITEM_MULT_IS = "|cffFFFF00+ %2$s |cffFFFF00(%1$d)";

That should change the order in which the arguments are inserted.
__________________
This posting is made of 100% recycled electrons.
  Reply With Quote