Fix index error

This commit is contained in:
Emik 2025-03-28 16:39:53 +01:00
parent 43113e16e2
commit 8c4ce9bb00
Signed by untrusted user who does not match committer: emik
GPG key ID: 09CDFF9E5703688D
2 changed files with 2 additions and 2 deletions

View file

@ -12,5 +12,5 @@
"Bakery (>=0.1.26~*)" "Bakery (>=0.1.26~*)"
], ],
"conflicts": ["Jen"], "conflicts": ["Jen"],
"version": "0.2.3" "version": "0.2.4"
} }

View file

@ -353,7 +353,7 @@ function Game:update(dt)
break break
end end
honey[first].sell_cost = v.sell_cost + honey[second].sell_cost honey[first].sell_cost = honey[first].sell_cost + honey[second].sell_cost
honey[first].ability.extra.is_corrupted = true honey[first].ability.extra.is_corrupted = true
honey[second]:start_dissolve() honey[second]:start_dissolve()
end end