-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keep buying Halloween season repeatedly #77
Comments
ハロウィンのスイッチを購入し続けていたわけではなかった。 else if (Game.season == "halloween")
{
/// 省略 ///
//エルダー誓約の撤回が出来る場合はする(Wrinklerをスポーンさせる必要があるため)
if (Game.UpgradesInStore.indexOf(Game.Upgrades["Revoke Elder Covenant"]) != -1)
{
Game.Upgrades["Revoke Elder Covenant"].buy();
}
if (halloweenRate >= 1)
{
//エルダー誓約を購入してババアポカリプスを終了させてから次に行く
Game.Upgrades["Elder Covenant"].buy(1);
CookieAssistant.SwitchNextSeason();
}
} これにより、エルダー宣誓&エルダー宣誓の撤回を同時に買い続ける現象が発生した。 |
どうしようこれ… |
ハロウィンに固定する目的はGC確率+2%だけだと思うが、エルダー宣誓や撤回は勝手に買ってほしくないと思うので完了後は止めたい。 |
修正方針そもそも、 全シーズン終えていて、完了後のシーズンを切り替える時に1回無駄な処理が入ってしまうのは許容でいい。 (それはそれとしてシーズン切り替え処理が汚すぎるのでリファクタしたい…) |
シーズン完了後はauotoSwitchSeasonの処理が走らないように修正
とき、ハロウィンのシーズン開始アップグレードを購入し続ける。
買うSEがするだけで問題はない(はず)
The text was updated successfully, but these errors were encountered: