- scriptified the Minotaur.
Interesting tidbit: The damage calculation in P_MinotaurSlam had been incorrect for the Heretic version since the friendly Hexen Dark Servant was added, but nobody ever noticed in 14 years...
This commit is contained in:
parent
6e1c6c4b33
commit
7385cd70c0
22 changed files with 834 additions and 789 deletions
|
|
@ -501,6 +501,15 @@ int FWadCollection::CheckNumForName (const char *name, int space, int wadnum, bo
|
|||
return i != NULL_INDEX ? i : -1;
|
||||
}
|
||||
|
||||
DEFINE_ACTION_FUNCTION(_Wads, CheckNumForName)
|
||||
{
|
||||
PARAM_PROLOGUE;
|
||||
PARAM_STRING(name);
|
||||
PARAM_INT(ns);
|
||||
PARAM_INT_DEF(wadnum);
|
||||
PARAM_BOOL_DEF(exact);
|
||||
ACTION_RETURN_INT(Wads.CheckNumForName(name, ns, wadnum, exact));
|
||||
}
|
||||
//==========================================================================
|
||||
//
|
||||
// W_GetNumForName
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue