summaryrefslogtreecommitdiff
path: root/scenes
diff options
context:
space:
mode:
authorZoey Kitt <zoey.kitt@outlook.com>2024-11-16 13:28:07 -0600
committerZoey Kitt <zoey.kitt@outlook.com>2024-11-16 13:28:07 -0600
commit954ac4ef435c2f8746746f9422c8e726cb130901 (patch)
tree44b80bd693adca9bab6ce80874620180afffec6b /scenes
parent5776af6ad1e542214056e3c3753427306d9bc921 (diff)
Remove print statements, nothing else, nope made no mistakes none
Diffstat (limited to 'scenes')
-rw-r--r--scenes/stockticker/stonks.gd4
1 files changed, 1 insertions, 3 deletions
diff --git a/scenes/stockticker/stonks.gd b/scenes/stockticker/stonks.gd
index d921282..1279382 100644
--- a/scenes/stockticker/stonks.gd
+++ b/scenes/stockticker/stonks.gd
@@ -20,7 +20,7 @@ var darksouls_text: Label
var price_history = []
var base_pos_mult = 0.5 # no size limit
-var base_neg_mult = 100.5 # probably keep this below 1
+var base_neg_mult = 0.5 # probably keep this below 1
var hype_mult = 1.0
var hype_decr = 0.1
@@ -128,8 +128,6 @@ func _on_timer_timeout() -> void:
new_price = new_price.times(mult)
if new_price.isLessThan(1) or new_price.toString()[0] == '-':
- print(bailout_counter)
- print(new_price.toString())
if bailout_counter == 0:
darksouls_background.visible = true
darksouls_text.visible = true