Rechenfehler des Zorns

This commit is contained in:
Lordmau5 2023-06-11 13:15:49 +02:00
parent 3478a157f6
commit 298e0ad6db

View File

@ -423,7 +423,7 @@ const gequetschteTabellenReihen = computed(() => {
const unserAn = personenObjekt.an[name]; const unserAn = personenObjekt.an[name];
const anderAn = person.an[personenObjekt.name]; const anderAn = person.an[personenObjekt.name];
if (unserAn <= anderAn) continue; if (unserAn < anderAn) continue;
personenObjekt.an[name] = unserAn - anderAn; personenObjekt.an[name] = unserAn - anderAn;
person.an[personenObjekt.name] = 0; person.an[personenObjekt.name] = 0;