Fix #132 You can no longer walk through rezzed players
--HG-- branch : compatibility
This commit is contained in:
parent
f703359eaa
commit
4d3d7a000a
1 changed files with 15 additions and 0 deletions
|
@ -2291,6 +2291,21 @@ void CCharacterCL::endAnimTransition()
|
|||
// If the next mode in the automaton != Current Mode
|
||||
if(_CurrentState->NextMode != _Mode)
|
||||
{
|
||||
// Undo previous behaviour
|
||||
switch(_Mode)
|
||||
{
|
||||
case MBEHAV::DEATH:
|
||||
// Restore collisions.
|
||||
if(_Primitive)
|
||||
{
|
||||
// TODO: Without this dynamic cast
|
||||
if(dynamic_cast<CPlayerCL *>(this))
|
||||
_Primitive->setOcclusionMask(MaskColPlayer);
|
||||
else
|
||||
_Primitive->setOcclusionMask(MaskColNpc);
|
||||
}
|
||||
break;
|
||||
}
|
||||
if(ClientCfg.UsePACSForAll && _Primitive)
|
||||
_Primitive->setCollisionMask(MaskColNone);
|
||||
//// AJOUT ////
|
||||
|
|
Loading…
Reference in a new issue