- Fixed what looks like an incorrect comparison in thingdef_states.cpp.

SVN r1467 (trunk)
This commit is contained in:
Randy Heit 2009-03-10 05:37:27 +00:00
parent b072431d3b
commit fd5a5be76a
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ do_stop:
sc.ScriptError("Negative jump offsets are not allowed");
}
if (x > 0)
if (v > 0)
{
x = new FxStateByIndex(bag.statedef.GetStateCount() + v, sc);
}