mirror of
https://github.com/Steffo99/swear-jar.git
synced 2024-11-22 15:44:21 +00:00
Default can_buy to true
This commit is contained in:
parent
73ede51027
commit
94fef9e231
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ class_name PurchasableItem
|
||||||
## Whether the player can click or not the Buy button.
|
## Whether the player can click or not the Buy button.
|
||||||
##
|
##
|
||||||
## Used to prevent two items from getting bought at the same time.
|
## Used to prevent two items from getting bought at the same time.
|
||||||
@export var can_buy: bool:
|
@export var can_buy: bool = true:
|
||||||
get:
|
get:
|
||||||
return can_buy
|
return can_buy
|
||||||
set(value):
|
set(value):
|
||||||
|
|
Loading…
Reference in a new issue