mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-13 13:40:56 +00:00
Add missing EV_USE_ITEM15 cases
Add EV_USE_ITEM15 to cg_event.c and ai_dmq3.c for consistency.
This commit is contained in:
parent
e488663e31
commit
3273df14af
2 changed files with 5 additions and 0 deletions
|
@ -867,6 +867,10 @@ void CG_EntityEvent( centity_t *cent, vec3_t position ) {
|
|||
DEBUGNAME("EV_USE_ITEM14");
|
||||
CG_UseItem( cent );
|
||||
break;
|
||||
case EV_USE_ITEM15:
|
||||
DEBUGNAME("EV_USE_ITEM15");
|
||||
CG_UseItem( cent );
|
||||
break;
|
||||
|
||||
//=================================================================
|
||||
|
||||
|
|
|
@ -5009,6 +5009,7 @@ void BotCheckEvents(bot_state_t *bs, entityState_t *state) {
|
|||
case EV_USE_ITEM12:
|
||||
case EV_USE_ITEM13:
|
||||
case EV_USE_ITEM14:
|
||||
case EV_USE_ITEM15:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue