Better Coin Animation

This commit is contained in:
brausjonas
2023-02-05 22:07:41 +01:00
parent b0ddf261f4
commit 2abea8e99e
45 changed files with 1259 additions and 355 deletions
+1
View File
@@ -82,6 +82,7 @@
<workItem from="1675279163903" duration="1346000" />
<workItem from="1675375598032" duration="1379000" />
<workItem from="1675545849238" duration="11000" />
<workItem from="1675628256814" duration="1286000" />
</task>
<servers />
</component>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+10
View File
@@ -157,6 +157,16 @@ public class Room
players[i].output.write(new byte[]{2, (byte) currentPlayer, 0, 0, 0, 0, 0, 0, 0, 0});
}
break;
case 6:
for (int i = 0; i < players.length; i++)
{
if (i != player)
{
players[i].output.write(new byte[]{6, (byte)player, readData[1], 0, 0, 0, 0, 0, 0, 0});
}
}
break;
case 126:
players[player].lastTimeSendTimeOutCheck = System.currentTimeMillis();
break;