mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 23:32:04 +00:00
- Fixed: A_BrainSpit's parameter is optional.
SVN r3915 (scripting)
This commit is contained in:
parent
e6b150bab9
commit
be27e68fc4
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ DEFINE_ACTION_FUNCTION(AActor, A_BrainDie)
|
||||||
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_BrainSpit)
|
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_BrainSpit)
|
||||||
{
|
{
|
||||||
PARAM_ACTION_PROLOGUE;
|
PARAM_ACTION_PROLOGUE;
|
||||||
PARAM_CLASS(spawntype, AActor);
|
PARAM_CLASS_OPT(spawntype, AActor) { spawntype = NULL; }
|
||||||
|
|
||||||
DSpotState *state = DSpotState::GetSpotState();
|
DSpotState *state = DSpotState::GetSpotState();
|
||||||
AActor *targ;
|
AActor *targ;
|
||||||
|
|
Loading…
Reference in a new issue