diff options
Diffstat (limited to 'scenes/score_window')
-rw-r--r-- | scenes/score_window/score_window.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scenes/score_window/score_window.gd b/scenes/score_window/score_window.gd index 410d67d..76fb983 100644 --- a/scenes/score_window/score_window.gd +++ b/scenes/score_window/score_window.gd @@ -6,7 +6,7 @@ var net_worth: Big # Called when the node enters the scene tree for the first time. func _ready() -> void: - net_worth = Big.new(10) + net_worth = Big.new(1000) var window = get_window() window.position = Vector2(450, 360) |