Skip to content
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

[TG Mirror] Fixes a fishing balloon alert runtime [MDB IGNORE] #131

Merged
merged 1 commit into from
Oct 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/modules/fishing/fishing_minigame.dm
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
SIGNAL_HANDLER
fishing_line = null
///The lure may be out of sight if the user has moed around a corner, so the message should be displayed over him instead.
user.balloon_alert(user.is_holding(used_rod) ? "line snapped" : "rod dropped")
user.balloon_alert(user, user.is_holding(used_rod) ? "line snapped" : "rod dropped")
interrupt()

/datum/fishing_challenge/proc/handle_click(mob/source, atom/target, modifiers)
Expand Down
Loading