mirror of
https://github.com/PfandBoss/SemesterGameJam2022.git
synced 2025-11-12 04:16:12 +01:00
cannon
This commit is contained in:
@@ -19,12 +19,12 @@ func _ready():
|
||||
#TODO: FINISH
|
||||
func interact(player):
|
||||
if currentState == STATE.INACTIVE:
|
||||
if player.getResource == 0:
|
||||
if player.getResource() == 0:
|
||||
if currentStashValue < maxStashValue:
|
||||
currentStashValue += 1
|
||||
return
|
||||
return
|
||||
if player.getResource == 1:
|
||||
if player.getResource() == 1:
|
||||
if currentPowderStashValue < maxPowderStashValue:
|
||||
currentPowderStashValue += 1
|
||||
return
|
||||
|
||||
@@ -91,7 +91,7 @@ func fill_inventory(type):
|
||||
|
||||
|
||||
func getResource():
|
||||
return self.resource
|
||||
return resource
|
||||
|
||||
func clearInventory():
|
||||
inventory = 0
|
||||
|
||||
Reference in New Issue
Block a user