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:
Zack Middleton 2014-10-27 14:11:50 -05:00
parent e488663e31
commit 3273df14af
2 changed files with 5 additions and 0 deletions

View File

@ -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;
//=================================================================

View File

@ -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;
}
}