- Increased the StrifeTypes array to 999 entries so that custom WADs have

more flexibility.



SVN r131 (trunk)
This commit is contained in:
Christoph Oelckers 2006-05-19 21:31:25 +00:00
commit 3431564b02
4 changed files with 8 additions and 4 deletions

View file

@ -2305,9 +2305,9 @@ static void ActorConversationID (AActor *defaults, Baggage &bag)
if (convid==-1) return;
}
if (convid<0 || convid>344)
if (convid<0 || convid>999)
{
SC_ScriptError ("ConversationID must be in the range [0,344]");
SC_ScriptError ("ConversationID must be in the range [0,999]");
}
else StrifeTypes[convid] = bag.Info->Class;
}