Fix laser clipping. Closes #2176

(cherry picked from upstream commit f3a1e68df9)
This commit is contained in:
oy 2015-10-30 19:55:51 +01:00 committed by Alexander Akulich
parent fd533a47f6
commit 9277e3cbeb

View file

@ -259,7 +259,7 @@ void CLaser::TickPaused()
void CLaser::Snap(int SnappingClient)
{
if(NetworkClipped(SnappingClient))
if(NetworkClipped(SnappingClient) && NetworkClipped(SnappingClient, m_From))
return;
CCharacter *OwnerChar = 0;
if(m_Owner >= 0)