== to ===

This commit is contained in:
2025-05-28 19:15:32 +08:00
parent ccfcc4f840
commit 34eec38036
16 changed files with 64 additions and 64 deletions

View File

@@ -20,7 +20,7 @@ export class TrophyClaim extends Laya.Script {
public onSetShow(record: TrophyRecord): void {
for (let i = 0; i < MONTH_LIST.length; i++) {
const obj = MONTH_LIST[i]
if (obj.year == record.year && obj.month == record.month) {
if (obj.year === record.year && obj.month === record.month) {
this.icon.skin = obj.icon_res
break
}