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:
FlufflesTheDog
2024-08-09 08:50:14 +02:00
committed by GitHub
parent 4216be7a11
commit f2f5b0f999
@@ -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)