Add args.Handled for in simulation hotkeys (#1657)

This commit is contained in:
ShadowCommander
2020-08-16 05:23:34 -07:00
committed by GitHub
parent b647ad0f42
commit 66367309f0

View File

@@ -226,7 +226,10 @@ namespace Content.Client.State
// client side command handlers will always be sent the local player session.
var session = PlayerManager.LocalPlayer.Session;
inputSys.HandleInputCommand(session, func, message);
if (inputSys.HandleInputCommand(session, func, message))
{
args.Handle();
}
}
}
}