mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 06:27: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 )
|
switch( itemActionData->type )
|
||||||
{
|
{
|
||||||
default:
|
default:
|
||||||
return;
|
{
|
||||||
|
player.sendDebug( "ItemAction type {0} not supported.", itemActionData->type );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case Common::ItemActionType::ItemActionVFX:
|
case Common::ItemActionType::ItemActionVFX:
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue