mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2024-11-24 01:11:45 +00:00
Tweak logic for showing level up notifs
This commit is contained in:
parent
51ed914f39
commit
4f80e00eb2
1 changed files with 5 additions and 1 deletions
|
@ -180,7 +180,11 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
||||||
() => resourceLevels.value[resource],
|
() => resourceLevels.value[resource],
|
||||||
(level, prevLevel) => {
|
(level, prevLevel) => {
|
||||||
const diff = Decimal.sub(level, prevLevel);
|
const diff = Decimal.sub(level, prevLevel);
|
||||||
if (Decimal.gt(diff, 1) && settings.active === player.id) {
|
if (
|
||||||
|
(Decimal.eq(level, 1) || Decimal.gt(diff, 1)) &&
|
||||||
|
Decimal.gt(diff, Decimal.div(prevLevel, 100)) &&
|
||||||
|
settings.active === player.id
|
||||||
|
) {
|
||||||
toast.info(
|
toast.info(
|
||||||
<div>
|
<div>
|
||||||
<h3>
|
<h3>
|
||||||
|
|
Loading…
Reference in a new issue