diff options
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.) |