mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 12:41:09 +01:00
Fix tadpole scooping (#85691)
## About The Pull Request Fixes swapped arguments to a do_after, allowing tadpoles to be scooped from puddles ## Why It's Good For The Game bug bad ## Changelog 🆑 fix: tadpoles can actually be scooped from ponds /🆑
This commit is contained in:
@@ -165,7 +165,7 @@
|
||||
return SECONDARY_ATTACK_CANCEL_ATTACK_CHAIN
|
||||
icon_state = "[base_icon_state]-splash"
|
||||
balloon_alert(user, "scooping tadpoles...")
|
||||
if(do_after(user, src, 5 SECONDS))
|
||||
if(do_after(user, 5 SECONDS, src))
|
||||
playsound(loc, 'sound/effects/slosh.ogg', 15, TRUE)
|
||||
balloon_alert(user, "got a tadpole")
|
||||
var/obj/item/fish/tadpole/tadpole = new(loc)
|
||||
|
||||
Reference in New Issue
Block a user