Skip to content

Commit

Permalink
Merge pull request #78 from Tendsty/develop
Browse files Browse the repository at this point in the history
bugfix patch 1.5.8
  • Loading branch information
Tendsty authored Jan 20, 2025
2 parents 09f1927 + 9e03924 commit e6d9102
Show file tree
Hide file tree
Showing 11 changed files with 36 additions and 8 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gooboo",
"version": "1.5.7",
"version": "1.5.8",
"description": "An idle game",
"author": "Tendsty",
"main": "main.js",
Expand Down
2 changes: 1 addition & 1 deletion public/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.7
1.5.8
2 changes: 1 addition & 1 deletion src/js/modules/event/prize.js
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ export default {
return store.state.unlock.villageOffering1.see;
},
roundAmount: true,
amountMult: () => store.state.stat.village_bestOffering.total,
amountMult: () => store.getters['village/offeringScore'],
pool: {
bingo0: {amount: 0.15},
bingo1: {amount: 0.5},
Expand Down
2 changes: 1 addition & 1 deletion src/js/modules/farm/fertilizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default {
effect: {farmExperience: 1.35}
},
superJuicy: {
type: 'fruit',
type: 'berry',
color: 'orange-red',
price: {gem_sapphire: 3},
effect: {farmCropGain: 2.5, farmRareDropChance: 1.6}
Expand Down
2 changes: 1 addition & 1 deletion src/js/modules/general/grobodal.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default {
{type: 'equipmentMastery', name: 'luckyCharm', operator: '>=', value: 1}
]},
{note: 'general_25', tasks: [
{type: 'stat', subtype: 'current', name: 'village_bestOffering', operator: '>=', value: 150}
{type: 'stat', subtype: 'total', name: 'village_offeringMax', operator: '>=', value: 4500}
]},
{note: 'general_26', tasks: [
{type: 'stat', subtype: 'current', name: 'horde_maxZone', operator: '>=', value: 110},
Expand Down
2 changes: 2 additions & 0 deletions src/js/modules/meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import v1_5_4 from "./patchnote/v1_5_4";
import v1_5_5 from "./patchnote/v1_5_5";
import v1_5_6 from "./patchnote/v1_5_6";
import v1_5_7 from "./patchnote/v1_5_7";
import v1_5_8 from "./patchnote/v1_5_8";

export default {
name: 'meta',
Expand Down Expand Up @@ -62,6 +63,7 @@ export default {
store.commit('system/initTheme', {name: key, ...elem});
}
for (const [key, elem] of Object.entries({
'1.5.8': v1_5_8,
'1.5.7': v1_5_7,
'1.5.6': v1_5_6,
'1.5.5': v1_5_5,
Expand Down
18 changes: 18 additions & 0 deletions src/js/modules/patchnote/v1_5_8.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
export default {
day: '2025-01-20',
content: {
meta: [
{
type: 'bugfix',
text: '441'
},
],
farm: [
{
unlock: 'farmFertilizer',
type: 'bugfix',
text: '442'
},
],
}
}
4 changes: 4 additions & 0 deletions src/lang/de/patchnote.js
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,10 @@ export default {

// v1.5.7
440: 'Opfergaben durch Opfer werden nun korrekt erhöht',

// v1.5.8
441: 'Ein Fehler wurde behoben, bei dem das Spiel bei manchen Spielern nicht gestartet ist',
442: 'Ein Fehler wurde behoben, bei dem ein Dünger nicht in der Liste aufgetaucht ist',
},
v: {
1: {
Expand Down
4 changes: 4 additions & 0 deletions src/lang/en/patchnote.js
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,10 @@ export default {

// v1.5.7
440: 'Fixed offerings gained on sacrifice not increasing',

// v1.5.8
441: 'Fixed a bug where the game would not load for some players',
442: 'Fixed one fertilizer not showing up in the list',
},
v: {
1: {
Expand Down
2 changes: 1 addition & 1 deletion src/store/system.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { LOCAL_STORAGE_NAME } from "../js/constants";
export default {
namespaced: true,
state: {
version: '1.5.7',
version: '1.5.8',
cheaterSelfMark: 0,
cheatDetected: {},
lastPlayedDays: [],
Expand Down

0 comments on commit e6d9102

Please sign in to comment.