Skip to content

Commit a06c4e6

Browse files
committed
fixing your peas
1 parent 7c45c36 commit a06c4e6

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

game/js/plants/oHugeNutBowling.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export var oHugeNutBowling = InheritO(oNutBowling, {
1515
EditEle($(a.id).childNodes[1], {
1616
style: `animation: hugeWallnutSpin ${1.25 * ($User.Visitor.TimeStep / 10)}s linear infinite`,
1717
});
18-
(function (b, c, n, m, e, g) {
18+
(function moveItem1(b, c, n, m, e, g) {
1919
var d = oZ.getArZ(n, m, e);
2020
var f = d.length;
2121
var k;

game/js/plants/oLotusRoot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export var oLotusRoot = InheritO(oPeashooter, {
6161
);
6262
oSym.addTask(
6363
1,
64-
function (f, j, h, c, n, i, m, k, o, g) {
64+
function moveItem1(f, j, h, c, n, i, m, k, o, g) {
6565
var l;
6666
var e = GetC(n);
6767
var d = oZ["getZ" + c](n, i);

game/js/plants/oRepeater2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export var oRepeater2 = InheritO(oRepeater, {
3131
);
3232
oSym.addTask(
3333
1,
34-
function (f, j, h, c, n, i, m, k, o, g) {
34+
function moveItem1(f, j, h, c, n, i, m, k, o, g) {
3535
var l;
3636
var e = GetC(n);
3737
var d = oZ["getZ" + c](n, i);

game/js/plants/oSeedRepeater2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export var oSeedRepeater2 = InheritO(oRepeater, {
3232
);
3333
oSym.addTask(
3434
1,
35-
function (f, j, h, c, n, i, m, k, o, g) {
35+
function moveItem1(f, j, h, c, n, i, m, k, o, g) {
3636
var l;
3737
var e = GetC(n);
3838
var d = oZ["getZ" + c](n, i);

game/js/plants/oSeedSnowPea.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export var oSeedSnowPea = InheritO(oPeashooter, {
3737
);
3838
oSym.addTask(
3939
1,
40-
function (f, j, h, c, n, i, m, k, o, g) {
40+
function moveItem1(f, j, h, c, n, i, m, k, o, g) {
4141
var l;
4242
var e = GetC(n);
4343
var d = oZ["getZ" + c](n, i);

game/js/plants/oSeedStarfruit.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export var oSeedStarfruit = InheritO(CPlants, {
107107
);
108108
oSym.addTask(
109109
1,
110-
function (m, k, l, i, j) {
110+
function moveItem1(m, k, l, i, j) {
111111
j(oZ.getZ1(m, k), 4, i) &&
112112
((m -= 5) < 100 ? ClearChild(i) : ((i.style.left = (l -= 5) + "px"), oSym.addTask(1, moveItem1, [m, k, l, i, j])));
113113
},
@@ -138,7 +138,7 @@ export var oSeedStarfruit = InheritO(CPlants, {
138138
);
139139
oSym.addTask(
140140
1,
141-
function (m, n, l, k, i, j) {
141+
function moveItem2(m, n, l, k, i, j) {
142142
j(oZ.getRangeLeftZ(m, n, l), 6, i) &&
143143
((k -= 5) < -15 ? ClearChild(i) : ((i.style.top = k + "px"), oSym.addTask(1, moveItem2, [m, n, GetR(k + 15), k, i, j])));
144144
},
@@ -170,7 +170,7 @@ export var oSeedStarfruit = InheritO(CPlants, {
170170
);
171171
oSym.addTask(
172172
1,
173-
function (m, n, l, k, i, j) {
173+
function moveItem3(m, n, l, k, i, j) {
174174
j(oZ.getRangeLeftZ(m, n, l), 2, i) &&
175175
((k += 5) > 600 ? ClearChild(i) : ((i.style.top = k + "px"), oSym.addTask(1, moveItem3, [m, n, GetR(k + 15), k, i, j])));
176176
},
@@ -202,7 +202,7 @@ export var oSeedStarfruit = InheritO(CPlants, {
202202
);
203203
oSym.addTask(
204204
1,
205-
function (n, l, m, k, i, j) {
205+
function moveItem4(n, l, m, k, i, j) {
206206
j(oZ.getZ0(n, l), 7, i) &&
207207
((n += 4) > 900 || (k -= 3) < -15
208208
? ClearChild(i)
@@ -240,7 +240,7 @@ export var oSeedStarfruit = InheritO(CPlants, {
240240
);
241241
oSym.addTask(
242242
1,
243-
function (n, l, m, k, i, j) {
243+
function moveItem5(n, l, m, k, i, j) {
244244
j(oZ.getZ0(n, l), 1, i) &&
245245
((n += 4) > 900 || (k += 3) > 600
246246
? ClearChild(i)

game/js/plants/oSeedThreepeater.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export var oSeedThreepeater = InheritO(oPeashooter, {
7373
);
7474
oSym.addTask(
7575
1,
76-
function (h, l, j, e, p, k, o, m, q, i) {
76+
function moveItem1(h, l, j, e, p, k, o, m, q, i) {
7777
var n;
7878
var g = GetC(p);
7979
var f = oZ["getZ" + e](p, k);

game/js/plants/oSeedTorchwood.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export var oSeedTorchwood = InheritO(CPlants, {
5353
);
5454
oSym.addTask(
5555
1,
56-
function (f, j, h, c, n, i, m, k, o, g) {
56+
function moveItem1(f, j, h, c, n, i, m, k, o, g) {
5757
var l;
5858
var e = GetC(n);
5959
var d = oZ["getZ" + c](n, i);

game/js/plants/oStarfruit.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export var oStarfruit = InheritO(CPlants, {
108108
);
109109
oSym.addTask(
110110
1,
111-
function (m, k, l, i, j) {
111+
function moveItem1(m, k, l, i, j) {
112112
j(oZ.getZ1(m, k), 4, i) &&
113113
((m -= 5) < 100 ? ClearChild(i) : ((i.style.left = (l -= 5) + "px"), oSym.addTask(1, moveItem1, [m, k, l, i, j])));
114114
},
@@ -139,7 +139,7 @@ export var oStarfruit = InheritO(CPlants, {
139139
);
140140
oSym.addTask(
141141
1,
142-
function (m, n, l, k, i, j) {
142+
function moveItem2(m, n, l, k, i, j) {
143143
j(oZ.getRangeLeftZ(m, n, l), 6, i) &&
144144
((k -= 5) < -15 ? ClearChild(i) : ((i.style.top = k + "px"), oSym.addTask(1, moveItem2, [m, n, GetR(k + 15), k, i, j])));
145145
},
@@ -171,7 +171,7 @@ export var oStarfruit = InheritO(CPlants, {
171171
);
172172
oSym.addTask(
173173
1,
174-
function (m, n, l, k, i, j) {
174+
function moveItem3(m, n, l, k, i, j) {
175175
j(oZ.getRangeLeftZ(m, n, l), 2, i) &&
176176
((k += 5) > 600 ? ClearChild(i) : ((i.style.top = k + "px"), oSym.addTask(1, moveItem3, [m, n, GetR(k + 15), k, i, j])));
177177
},
@@ -203,7 +203,7 @@ export var oStarfruit = InheritO(CPlants, {
203203
);
204204
oSym.addTask(
205205
1,
206-
function (n, l, m, k, i, j) {
206+
function moveItem4(n, l, m, k, i, j) {
207207
j(oZ.getZ0(n, l), 7, i) &&
208208
((n += 4) > 900 || (k -= 3) < -15
209209
? ClearChild(i)
@@ -241,7 +241,7 @@ export var oStarfruit = InheritO(CPlants, {
241241
);
242242
oSym.addTask(
243243
1,
244-
function (n, l, m, k, i, j) {
244+
function moveItem5(n, l, m, k, i, j) {
245245
j(oZ.getZ0(n, l), 1, i) &&
246246
((n += 4) > 900 || (k += 3) > 600
247247
? ClearChild(i)

game/js/plants/oThreepeater.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export var oThreepeater = InheritO(oPeashooter, {
9999
);
100100
oSym.addTask(
101101
1,
102-
function (h, l, j, e, p, k, o, m, q, i) {
102+
function moveItem1(h, l, j, e, p, k, o, m, q, i) {
103103
var n;
104104
var g = GetC(p);
105105
var f = oZ["getZ" + e](p, k);

0 commit comments

Comments
 (0)