1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-25 22:17:45 +00:00

log invalid itemaction types

This commit is contained in:
NotAdam 2019-02-09 22:45:29 +11:00
parent 4c888aba1b
commit 2e0d76c50f

View file

@ -46,7 +46,10 @@ void World::Manager::ActionMgr::handleItemAction( Sapphire::Entity::Player& play
switch( itemActionData->type )
{
default:
return;
{
player.sendDebug( "ItemAction type {0} not supported.", itemActionData->type );
break;
}
case Common::ItemActionType::ItemActionVFX:
{