We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a26979 commit ac7b454Copy full SHA for ac7b454
game/js/CZombie.js
@@ -1418,10 +1418,11 @@ var oDancingZombie = InheritO(OrnNoneZombies, {
1418
g &&
1419
g.beAttacked &&
1420
((e.src = "images/Zombies/DancingZombie/Summon2.gif"),
1421
- oSym.addTask(
+ oSym.addTask( // zombie existed here
1422
10,
1423
(t, s, x) => {
1424
var h = $Z[t];
1425
+ if (!h) return;
1426
var v = h.ZX;
1427
var m = h.ArDZ;
1428
var n = [];
@@ -1432,7 +1433,7 @@ var oDancingZombie = InheritO(OrnNoneZombies, {
1432
1433
var o = 0;
1434
var q;
1435
var l;
- if (h && h.beAttacked) {
1436
+ if (h.beAttacked) {
1437
s.src = "images/Zombies/DancingZombie/Summon3.gif";
1438
while (r--) {
1439
(q = m[r]) &&
0 commit comments