Skip to content

Commit

Permalink
v1.2.3
Browse files Browse the repository at this point in the history
Fixed seasonal Nook clothing availability inaccuracy
  • Loading branch information
Brian-Mp16 committed Nov 3, 2023
1 parent 3f4e845 commit 7bfb47a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Animal Crossing Town Ticket Station/ShopAround.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,7 @@ private bool CheckShopAvailability(Tuple<ItemInfo, int> itemCodeData)
case 6: if (now.Month == intMonth && now.Day >= intDay || now.Month == intMonth + 1) boolPass = true; break;
case 7: if (now.Month >= intMonth && now.Month <= intMonth + 2) boolPass = true; break;
case 8:
if (intMonth != 11 && now.Month == intMonth && now.Day >= intDay || now.Month != 11 && now.Month > intMonth && now.Month <= intMonth + 2 ||
if (intMonth != 11 && now.Month == intMonth && now.Day >= intDay || intMonth != 11 && now.Month > intMonth && now.Month <= intMonth + 3 ||
intMonth == 11 && now.Month == 11 && now.Day >= intDay || intMonth == 11 && now.Month > 11 || intMonth == 11 && now.Month <= 2) boolPass = true; break;
default: boolPass = false; break;
}
Expand Down

0 comments on commit 7bfb47a

Please sign in to comment.