Merge pull request #2 from anzuwork/patch-5

IIDX: Fixed treating head equip as hand equip
This commit is contained in:
duel0213
2025-08-23 11:06:58 +09:00
committed by duel0213
parent d66f9e1085
commit 3bad80d504
+6 -6
View File
@@ -2456,7 +2456,7 @@ export const pcsave: EPR = async (info, data, send) => {
custom.qpro_hair = parseInt($(data).attr("qpro_equip").hair);
custom.qpro_face = parseInt($(data).attr("qpro_equip").face);
custom.qpro_body = parseInt($(data).attr("qpro_equip").body);
custom.qpro_hand = parseInt($(data).attr("qpro_equip").head);
custom.qpro_hand = parseInt($(data).attr("qpro_equip").hand);
}
if (!_.isNil($(data).element("achievements"))) {
@@ -2713,7 +2713,7 @@ export const pcsave: EPR = async (info, data, send) => {
custom.qpro_hair = parseInt($(data).attr("qpro_equip").hair);
custom.qpro_face = parseInt($(data).attr("qpro_equip").face);
custom.qpro_body = parseInt($(data).attr("qpro_equip").body);
custom.qpro_hand = parseInt($(data).attr("qpro_equip").head);
custom.qpro_hand = parseInt($(data).attr("qpro_equip").hand);
}
if (!_.isNil($(data).element("achievements"))) {
@@ -2904,7 +2904,7 @@ export const pcsave: EPR = async (info, data, send) => {
custom.qpro_hair = parseInt($(data).attr("qpro_equip").hair);
custom.qpro_face = parseInt($(data).attr("qpro_equip").face);
custom.qpro_body = parseInt($(data).attr("qpro_equip").body);
custom.qpro_hand = parseInt($(data).attr("qpro_equip").head);
custom.qpro_hand = parseInt($(data).attr("qpro_equip").hand);
}
if (hasStepUpData) {
@@ -3112,7 +3112,7 @@ export const pcsave: EPR = async (info, data, send) => {
custom.qpro_hair = parseInt($(data).attr("qpro_equip").hair);
custom.qpro_face = parseInt($(data).attr("qpro_equip").face);
custom.qpro_body = parseInt($(data).attr("qpro_equip").body);
custom.qpro_hand = parseInt($(data).attr("qpro_equip").head);
custom.qpro_hand = parseInt($(data).attr("qpro_equip").hand);
}
if (hasStepUpData) {
@@ -3276,7 +3276,7 @@ export const pcsave: EPR = async (info, data, send) => {
custom.qpro_hair = parseInt($(data).attr("qpro_equip").hair);
custom.qpro_face = parseInt($(data).attr("qpro_equip").face);
custom.qpro_body = parseInt($(data).attr("qpro_equip").body);
custom.qpro_hand = parseInt($(data).attr("qpro_equip").head);
custom.qpro_hand = parseInt($(data).attr("qpro_equip").hand);
}
if (hasStepUpData) {
@@ -3563,7 +3563,7 @@ export const pcsave: EPR = async (info, data, send) => {
custom.qpro_hair = parseInt($(data).attr("qpro_equip").hair);
custom.qpro_face = parseInt($(data).attr("qpro_equip").face);
custom.qpro_body = parseInt($(data).attr("qpro_equip").body);
custom.qpro_hand = parseInt($(data).attr("qpro_equip").head);
custom.qpro_hand = parseInt($(data).attr("qpro_equip").hand);
}
if (hasStepUpData) {