@ -286,7 +286,6 @@ public class PlayerCharacter extends AbstractCharacter {
@@ -286,7 +286,6 @@ public class PlayerCharacter extends AbstractCharacter {
publicvoidupdateBounds(){
this.playerBounds.setBounds(this);
this.checkCollisionsWithOtherPlayers();
// This is a test to see if it will push to the docker container
}
publicvoidcheckCollisionsWithOtherPlayers(){
@ -295,6 +294,8 @@ public class PlayerCharacter extends AbstractCharacter {
@@ -295,6 +294,8 @@ public class PlayerCharacter extends AbstractCharacter {
System.out.println("Collision detected with player: "+otherPlayer.getFirstName());
ChatManager.chatSystemInfo(otherPlayer,"Has Collided with YOU");
// Handle collision with other player
handleCollisionWithPlayer(otherPlayer);
}
@ -303,9 +304,28 @@ public class PlayerCharacter extends AbstractCharacter {
@@ -303,9 +304,28 @@ public class PlayerCharacter extends AbstractCharacter {