Skip to content

Commit

Permalink
clang
Browse files Browse the repository at this point in the history
  • Loading branch information
kphoenix137 committed Mar 7, 2024
1 parent fc1efbf commit 4ad3741
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion Source/missiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3546,7 +3546,6 @@ void ProcessChainLightning(Missile &missile)
dir = GetDirection(position, target);
AddMissile(position, target, dir, MissileID::LightningControl, TARGET_MONSTERS, id, 1, missile._mispllvl);
}

}
return false;
});
Expand Down
2 changes: 1 addition & 1 deletion Source/monster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4831,7 +4831,7 @@ bool Monster::isPlayerMinion() const

bool Monster::belongsToPlayer(const Player &player) const
{
return player.getId() == getId();
return player.getId() == getId();
}

bool Monster::isPossibleToHit() const
Expand Down

0 comments on commit 4ad3741

Please sign in to comment.