wmllint is generating invalid WML for the ".stoned" and "[unstone]"...

...replacements (namely, it generates "petrified" and "[unpetrifyx]"
instead of ".petrified" and "[unpetrify]".

This commit fixes that.
This commit is contained in:
Ignacio R. Morelle 2009-04-26 21:19:18 +00:00
parent cacf4216ec
commit 7df8704662

View file

@ -452,10 +452,10 @@ linechanges = (
("targetting", "targeting"),
# Changed just after 1.7 fork
("[stone]", "[petrify]"),
("[unstone]", "[unpetrifyx]"),
("[unstone]", "[unpetrify]"),
("WEAPON_SPECIAL_STONE", "WEAPON_SPECIAL_PETRIFY"),
("SPECIAL_NOTE_STONE", "SPECIAL_NOTE_PETRIFY"),
(".stoned", "petrified"),
(".stoned", ".petrified"),
)
def validate_stack(stack, filename, lineno):