Skip to content

Commit 3999508

Browse files
committed
Remove last multplayer connections
1 parent 3c31cd6 commit 3999508

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/com/redomar/game/entities/Player.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
import com.redomar.game.level.LevelHandler;
1212
import com.redomar.game.lib.Font;
1313
import com.redomar.game.lib.Name;
14-
import com.redomar.game.net.packets.Packet02Move;
1514
import com.redomar.game.objects.Inventory;
1615

1716
public class Player extends Mob {
@@ -96,10 +95,6 @@ public void tick() {
9695
if (xa != 0 || ya != 0) {
9796
move(xa, ya);
9897
isMoving = true;
99-
100-
Packet02Move packet = new Packet02Move(this.getUsername(),
101-
(int) this.getX(), (int) this.getY(), this.numSteps, this.isMoving,
102-
this.movingDir);
10398
Game.getGame();
10499

105100
} else {

0 commit comments

Comments
 (0)