1
Fork 0
mirror of https://github.com/Steffo99/pineapple-surf.git synced 2024-10-16 14:27:30 +00:00

change "peas" to "seeds"

This commit is contained in:
Steffo 2023-01-08 22:14:17 +01:00
parent 8cad758411
commit 5871e28bca
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -102,7 +102,7 @@ func _physics_process(delta):
if active_weapon and active_weapon.ammoType != BaseWeapon.AmmoType.NONE:
ammo_label.show()
if active_weapon is PeaShooter:
ammo_label.text = "%d peas left" % active_weapon.remaining
ammo_label.text = "%d seeds left" % active_weapon.remaining
else:
ammo_label.hide()