mirror of https://github.com/dirtbags/tanks.git
jstanks: allow simultaneous cannon firing
This commit is contained in:
parent
0c319ec23e
commit
79dc0cc376
|
@ -480,7 +480,7 @@ var rotate_point = function(angle, point) {
|
||||||
|
|
||||||
ForfTank.prototype.fireCannon = function(that, vector, dist2) {
|
ForfTank.prototype.fireCannon = function(that, vector, dist2) {
|
||||||
/* If someone's a crater, this is easy */
|
/* If someone's a crater, this is easy */
|
||||||
if (this.killer || that.killer) {
|
if ((this.killer && this.killer !== that) || that.killer) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue