lol oops, fix labeling Sick poses

This commit is contained in:
Emi Matchu 2020-08-31 00:59:07 -07:00
parent 1c8eba4698
commit ce2482735c

View file

@ -74,9 +74,9 @@ function getPetStateFieldsFromPose(pose) {
} else if (pose === "SAD_FEM") { } else if (pose === "SAD_FEM") {
return { moodId: "2", female: true, unconverted: false }; return { moodId: "2", female: true, unconverted: false };
} else if (pose === "SICK_MASC") { } else if (pose === "SICK_MASC") {
return { moodId: "3", female: false, unconverted: false }; return { moodId: "4", female: false, unconverted: false };
} else if (pose === "SICK_FEM") { } else if (pose === "SICK_FEM") {
return { moodId: "3", female: true, unconverted: false }; return { moodId: "4", female: true, unconverted: false };
} else { } else {
throw new Error(`unexpected pose ${pose}`); throw new Error(`unexpected pose ${pose}`);
} }