diff options
Diffstat (limited to 'client/map/items/burned_pot.gd')
-rw-r--r-- | client/map/items/burned_pot.gd | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/map/items/burned_pot.gd b/client/map/items/burned_pot.gd index dc749259..d38cae6e 100644 --- a/client/map/items/burned_pot.gd +++ b/client/map/items/burned_pot.gd @@ -18,6 +18,8 @@ extends PotFill func _init(owned_by_: Node3D): super(owned_by_) - steam.emitting = true steam.color = Color(0., 0., 0.) set_color(Color(.1, .1, .1)) + +func _ready(): + steam.emitting = true |