1
0

1.8: Fixed hangings.

This commit is contained in:
Howaner
2014-09-11 20:06:28 +02:00
parent 3bd3ac2200
commit c45bf7cf55
4 changed files with 89 additions and 32 deletions

View File

@@ -26,7 +26,7 @@ void cItemFrame::OnRightClicked(cPlayer & a_Player)
{
// Item not empty, rotate, clipping values to zero to three inclusive
m_Rotation++;
if (m_Rotation >= 4)
if (m_Rotation >= 8)
{
m_Rotation = 0;
}