fix typo that prevented firststrike from being upconverted

r -> s and no more "Don't know how to convert 'firststrike'" messages.
This commit is contained in:
Groggy Dice 2013-07-11 06:14:32 -04:00
parent 1fe15fe6e9
commit 4889ca1cca

View file

@ -1336,7 +1336,7 @@ def hack_syntax(filename, lines):
if special.startswith("plague("):
insertion += ws + baseindent*2 + "{WEAPON_SPECIAL_PLAGUE_TYPE " + special[7:-1] + "}\n"
elif special in ("backstab", "berserk", "charge", "drain",
"firstrtrike", "magical", "plague",
"firststrike", "magical", "plague",
"poison", "slow", "stone", "swarm",):
insertion += ws + baseindent*2 + "{WEAPON_SPECIAL_" + special.upper() + "}\n"
else: