diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 19:38:06 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 19:38:06 -0600 |
commit | a472a321179268710722232ee61aa04b369c627c (patch) | |
tree | 720d7c078713c73126d0b20575c2d2a4f4facd2a /scenes/stockticker/transactions.gd | |
parent | 162f6ba656c3ed050526df7e0aa31d8e284b640c (diff) |
Make the fishing minigame transition into stonks
Diffstat (limited to 'scenes/stockticker/transactions.gd')
-rw-r--r-- | scenes/stockticker/transactions.gd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scenes/stockticker/transactions.gd b/scenes/stockticker/transactions.gd index daff901..39e25b9 100644 --- a/scenes/stockticker/transactions.gd +++ b/scenes/stockticker/transactions.gd @@ -15,3 +15,7 @@ func _on_stonks_sell(amount: Variant) -> void: print("+$%s" % amount.toString()) sell.emit(amount) + +# Scope creep! +func start(): + $Timer.start() |