diff options
author | Logan <logan@cflip.net> | 2022-09-24 14:06:05 -0600 |
---|---|---|
committer | Logan <logan@cflip.net> | 2022-09-24 14:06:05 -0600 |
commit | d5c6407dd82aaf5fee0c0a6f8d02ff1e9f41df23 (patch) | |
tree | 0665afae76271ff09fbd7614b98abfbe797752e6 /scripts/global_variables.gd | |
parent | 486af6b416637184417ace7adb1bb4db6f243436 (diff) |
Prevent over-scoring with basketball.
Diffstat (limited to 'scripts/global_variables.gd')
-rw-r--r-- | scripts/global_variables.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/global_variables.gd b/scripts/global_variables.gd index b570635..f0702e6 100644 --- a/scripts/global_variables.gd +++ b/scripts/global_variables.gd @@ -1,3 +1,4 @@ extends Node var score = 0 +var has_scored = false |