mirror of
https://github.com/yquake2/rogue.git
synced 2025-04-06 01:56:18 +00:00
Merge pull request #128 from BjossiAlfreds/door-use-fix
Fixed doors being unusable with NULL activator
This commit is contained in:
commit
7997219c85
1 changed files with 13 additions and 4 deletions
17
src/g_func.c
17
src/g_func.c
|
@ -2266,7 +2266,7 @@ door_use(edict_t *self, edict_t *other /* unused */, edict_t *activator)
|
|||
edict_t *ent;
|
||||
vec3_t center;
|
||||
|
||||
if (!self || !activator)
|
||||
if (!self)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -3443,13 +3443,22 @@ trigger_elevator_use(edict_t *self, edict_t *other,
|
|||
edict_t *activator /* unused */)
|
||||
{
|
||||
edict_t *target;
|
||||
edict_t *train;
|
||||
|
||||
if (!self || !other)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (self->movetarget->nextthink)
|
||||
train = self->movetarget;
|
||||
|
||||
if (!train || !train->inuse ||
|
||||
!train->classname || strcmp(train->classname, "func_train") != 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (train->nextthink)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -3469,8 +3478,8 @@ trigger_elevator_use(edict_t *self, edict_t *other,
|
|||
return;
|
||||
}
|
||||
|
||||
self->movetarget->target_ent = target;
|
||||
train_resume(self->movetarget);
|
||||
train->target_ent = target;
|
||||
train_resume(train);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue