- Increased the StrifeTypes array to 999 entries so that custom WADs have
more flexibility. SVN r131 (trunk)
This commit is contained in:
parent
cf63f2c28e
commit
3431564b02
4 changed files with 8 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue