mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 15:02:39 +00:00
- Fixed: A_CheckProximity could trigger an assert because the flags and ptr were not flagged as optional.
- Fixed: CPXF_ANCESTOR no longer worked for some reason because apparently the IsAncestorOf() functionality has changed. Use IsKindOf instead.
This commit is contained in:
parent
c940c2ba81
commit
124e0458cf
1 changed files with 3 additions and 3 deletions
|
@ -6419,8 +6419,8 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_CheckProximity)
|
||||||
PARAM_CLASS(classname, AActor);
|
PARAM_CLASS(classname, AActor);
|
||||||
PARAM_FIXED(distance);
|
PARAM_FIXED(distance);
|
||||||
PARAM_INT_OPT(count) { count = 1; }
|
PARAM_INT_OPT(count) { count = 1; }
|
||||||
PARAM_INT(flags) { flags = 0; }
|
PARAM_INT_OPT(flags) { flags = 0; }
|
||||||
PARAM_INT(ptr) { ptr = AAPTR_DEFAULT; }
|
PARAM_INT_OPT(ptr) { ptr = AAPTR_DEFAULT; }
|
||||||
|
|
||||||
ACTION_SET_RESULT(false); //No inventory chain results please.
|
ACTION_SET_RESULT(false); //No inventory chain results please.
|
||||||
|
|
||||||
|
@ -6455,7 +6455,7 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_CheckProximity)
|
||||||
//Check inheritance for the classname. Taken partly from CheckClass DECORATE function.
|
//Check inheritance for the classname. Taken partly from CheckClass DECORATE function.
|
||||||
if (flags & CPXF_ANCESTOR)
|
if (flags & CPXF_ANCESTOR)
|
||||||
{
|
{
|
||||||
if (!(mo->GetClass()->IsAncestorOf(classname)))
|
if (!(mo->IsKindOf(classname)))
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
//Otherwise, just check for the regular class name.
|
//Otherwise, just check for the regular class name.
|
||||||
|
|
Loading…
Reference in a new issue