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:
parent
4c888aba1b
commit
2e0d76c50f
1 changed files with 4 additions and 1 deletions
|
@ -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:
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue