mirror of
https://github.com/yquake2/xatrix.git
synced 2025-06-03 18:41:24 +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:
|
The Reckoning 2.00RC to 2.00:
|
||||||
- Updates to the opened inventory screen
|
- Updates to the opened inventory screen
|
||||||
were fixed. (By svdijk, merged from
|
were fixed. (By svdijk, merged from
|
||||||
|
|
|
@ -266,9 +266,10 @@ SP_trigger_once(edict_t *ent)
|
||||||
* it can only be fired by other events.
|
* it can only be fired by other events.
|
||||||
*/
|
*/
|
||||||
void
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -179,11 +179,11 @@ Think_Delay(edict_t *ent)
|
||||||
* match (string)self.target and call their .use function
|
* match (string)self.target and call their .use function
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
G_UseTargets(edict_t *ent, edict_t *activator)
|
G_UseTargets(edict_t *ent, edict_t *activator /* may be NULL */)
|
||||||
{
|
{
|
||||||
edict_t *t;
|
edict_t *t;
|
||||||
|
|
||||||
if (!ent || !activator)
|
if (!ent)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue