mirror of
https://github.com/yquake2/xatrix.git
synced 2024-11-10 06:42:22 +00:00
Fix a progress stopper in xware.bsp
This commit is contained in:
parent
fc5760bf99
commit
d5d771d373
3 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,6 @@
|
|||
The reckoning 2.00 to 2.01:
|
||||
- Fix a progress stopper in xware.bsp
|
||||
|
||||
The Reckoning 2.00RC to 2.00:
|
||||
- Updates to the opened inventory screen
|
||||
were fixed. (By svdijk, merged from
|
||||
|
|
|
@ -266,9 +266,10 @@ SP_trigger_once(edict_t *ent)
|
|||
* it can only be fired by other events.
|
||||
*/
|
||||
void
|
||||
trigger_relay_use(edict_t *self, edict_t *other /* unused */, edict_t *activator)
|
||||
trigger_relay_use(edict_t *self, edict_t *other /* unused */,
|
||||
edict_t *activator /* may be NULL */)
|
||||
{
|
||||
if (!self || !activator)
|
||||
if (!self)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -179,11 +179,11 @@ Think_Delay(edict_t *ent)
|
|||
* match (string)self.target and call their .use function
|
||||
*/
|
||||
void
|
||||
G_UseTargets(edict_t *ent, edict_t *activator)
|
||||
G_UseTargets(edict_t *ent, edict_t *activator /* may be NULL */)
|
||||
{
|
||||
edict_t *t;
|
||||
|
||||
if (!ent || !activator)
|
||||
if (!ent)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue