Fix prettier installation #774
This commit is contained in:
@@ -14,9 +14,7 @@ export default function ReplaceTooltipGrimoire() {
|
||||
Game.tooltip.dynamic = 1;
|
||||
Game.tooltip.draw(
|
||||
this,
|
||||
function () {
|
||||
return CreateTooltip('g', `${i}`);
|
||||
},
|
||||
() => CreateTooltip('g', `${i}`),
|
||||
'this',
|
||||
);
|
||||
Game.tooltip.wobble();
|
||||
|
||||
@@ -17,9 +17,7 @@ export default function ReplaceTooltipUpgrade() {
|
||||
Game.tooltip.dynamic = 1;
|
||||
Game.tooltip.draw(
|
||||
this,
|
||||
function () {
|
||||
return CreateTooltip('u', `${i}`);
|
||||
},
|
||||
() => CreateTooltip('u', `${i}`),
|
||||
'store',
|
||||
);
|
||||
Game.tooltip.wobble();
|
||||
|
||||
@@ -21,9 +21,7 @@ function ReplaceTooltipBuild() {
|
||||
Game.tooltip.dynamic = 1;
|
||||
Game.tooltip.draw(
|
||||
this,
|
||||
function () {
|
||||
return CreateTooltip('b', `${i}`);
|
||||
},
|
||||
() => CreateTooltip('b', `${i}`),
|
||||
'store',
|
||||
);
|
||||
Game.tooltip.wobble();
|
||||
@@ -42,9 +40,7 @@ function ReplaceTooltipLump() {
|
||||
Game.tooltip.dynamic = 1;
|
||||
Game.tooltip.draw(
|
||||
this,
|
||||
function () {
|
||||
return CreateTooltip('s', 'Lump');
|
||||
},
|
||||
() => CreateTooltip('s', 'Lump'),
|
||||
'this',
|
||||
);
|
||||
Game.tooltip.wobble();
|
||||
@@ -61,9 +57,7 @@ function ReplaceTooltipGarden() {
|
||||
Game.tooltip.dynamic = 1;
|
||||
Game.tooltip.draw(
|
||||
this,
|
||||
function () {
|
||||
return CreateTooltip('ha', 'HarvestAllButton');
|
||||
},
|
||||
() => CreateTooltip('ha', 'HarvestAllButton'),
|
||||
'this',
|
||||
);
|
||||
Game.tooltip.wobble();
|
||||
@@ -75,9 +69,7 @@ function ReplaceTooltipGarden() {
|
||||
Game.tooltip.dynamic = 1;
|
||||
Game.tooltip.draw(
|
||||
this,
|
||||
function () {
|
||||
return CreateTooltip('p', [`${coords[0]}`, `${coords[2]}`]);
|
||||
},
|
||||
() => CreateTooltip('p', [`${coords[0]}`, `${coords[2]}`]),
|
||||
'this',
|
||||
);
|
||||
Game.tooltip.wobble();
|
||||
@@ -93,9 +85,7 @@ function ReplaceTooltipPantheon() {
|
||||
Game.tooltip.dynamic = 1;
|
||||
Game.tooltip.draw(
|
||||
this,
|
||||
function () {
|
||||
return CreateTooltip('pag', i);
|
||||
},
|
||||
() => CreateTooltip('pag', i),
|
||||
'this',
|
||||
);
|
||||
Game.tooltip.wobble();
|
||||
@@ -106,12 +96,10 @@ function ReplaceTooltipPantheon() {
|
||||
Game.tooltip.dynamic = 1;
|
||||
Game.tooltip.draw(
|
||||
this,
|
||||
function () {
|
||||
return CreateTooltip('pas', [
|
||||
() => CreateTooltip('pas', [
|
||||
i,
|
||||
Game.Objects.Temple.minigame.slot[i],
|
||||
]);
|
||||
},
|
||||
]),
|
||||
'this',
|
||||
);
|
||||
Game.tooltip.wobble();
|
||||
|
||||
@@ -69,7 +69,7 @@ export default function ReplaceNative() {
|
||||
l('bigCookie').removeEventListener('click', Game.ClickCookie, false);
|
||||
l('bigCookie').addEventListener(
|
||||
'click',
|
||||
function () {
|
||||
() => {
|
||||
FixMouseY(Game.ClickCookie);
|
||||
},
|
||||
false,
|
||||
|
||||
Reference in New Issue
Block a user