Adding a forgotten change for the new version

This commit is contained in:
MRegnard 2023-09-26 10:05:32 +02:00 committed by GitHub
parent c42a3c5a13
commit cd32442088
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,18 +29,18 @@ const getters = {
const firstNight = [0];
const otherNight = [0];
fabled.forEach(role => {
if (role.firstNight && !firstNight.includes(role.firstNight)) {
if (role.firstNight && !firstNight.includes(role)) {
firstNight.push(role);
}
if (role.otherNight && !otherNight.includes(role.otherNight)) {
if (role.otherNight && !otherNight.includes(role)) {
otherNight.push(role);
}
});
players.forEach(({ role }) => {
if (role.firstNight && !firstNight.includes(role.firstNight)) {
if (role.firstNight && !firstNight.includes(role)) {
firstNight.push(role);
}
if (role.otherNight && !otherNight.includes(role.otherNight)) {
if (role.otherNight && !otherNight.includes(role)) {
otherNight.push(role);
}
});