We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a247240 commit b645944Copy full SHA for b645944
1 file changed
src/core/execution/AttackExecution.ts
@@ -116,14 +116,6 @@ export class AttackExecution implements Execution {
116
.attackAmount(this._owner, this.target);
117
}
118
119
- if (this.startTroops > currentTroops)
120
- console.debug(
121
- this._owner.displayName(),
122
- this.startTroops,
123
- currentTroops,
124
- this.attackRatio,
125
- );
126
-
127
if (this.removeTroops) {
128
this.startTroops = Math.min(this._owner.troops(), this.startTroops);
129
this._owner.removeTroops(this.startTroops);
0 commit comments