diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-19 13:07:50 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-19 13:07:50 +0200 |
commit | 317a358046830e6c23dce5d133880e8f86a5526f (patch) | |
tree | 451259f627fb7f907e5dbe859afd10586a74f3c8 /client/map/items/pot.gd | |
parent | 3e321f4e844d6517f21ea40b5c82bb33e7ed4334 (diff) | |
download | hurrycurry-317a358046830e6c23dce5d133880e8f86a5526f.tar hurrycurry-317a358046830e6c23dce5d133880e8f86a5526f.tar.bz2 hurrycurry-317a358046830e6c23dce5d133880e8f86a5526f.tar.zst |
merge pot and fp items into single files
Diffstat (limited to 'client/map/items/pot.gd')
-rw-r--r-- | client/map/items/pot.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd index 4fb065cd..dd5a6c6f 100644 --- a/client/map/items/pot.gd +++ b/client/map/items/pot.gd @@ -29,7 +29,7 @@ func progress(p: float, warn: bool): if warn: steam.color = Color(.2, .2, .2) else: - steam.color = Color(1., 1., 1.) + steam.color = Color(1.,1.,1.) func finish(warn: bool): super(warn) @@ -40,4 +40,4 @@ func setup_sounds(): put_sound.setup([preload("res://map/items/sounds/pot_put.ogg")]) static func base_position() -> Vector3: - return Vector3(0., 0.015, 0.) + return Vector3(0.,0.015, 0.) |