-
Notifications
You must be signed in to change notification settings - Fork 5
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
Fix 4x speed at wendigo #223
Conversation
@@ -2271,7 +2271,6 @@ def fullheal(target: int, direction: str): | |||
|
|||
|
|||
# Process written by CrimsonInferno | |||
@battle.utils.speedup_decorator |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fixes the wendigo fight, tested it on my machine.
|
||
def wrapper(*args, **kwargs): | ||
if game_vars.get_battle_speedup(): | ||
logger.debug(f"Speeding battle up: {func.__name__}") | ||
monitor = threading.Thread(target=_monitor_battle) | ||
monitor = threading.Thread(target=_monitor_battle, daemon=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fixes the CTRL-C issue when you kill the TAS during combat when 4x speed is auto-enabled for combat. Also tested this locally.
@@ -490,23 +490,23 @@ def advanced_battle_logic(): | |||
# Double Gemini, two different locations | |||
if memory.main.get_use_items_slot(42) < 100: | |||
battle.main.use_item( | |||
memory.main.get_use_items_slot(42), rikku_flee=False | |||
memory.main.get_use_items_slot(42), rikku_flee=True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to @coderwilson these all needed to be toggled, I have not actually tested this yet, but plan to either tonight or tomorrow.
No description provided.