Skip to content

Commit 8efd625

Browse files
Bleeding particles now use the new Flesh system
1 parent 473ba61 commit 8efd625

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Particles/Blood.gd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ func _physics_process(delta):
2525
if substance == "lava":
2626
for i in $Area2D.get_overlapping_bodies():
2727
if i.has_method("health_object"):
28-
i.health_object().temperature += 10.0
28+
if i.health_object().temperature_module:
29+
i.health_object().temperature_module.temperature += 10.0

0 commit comments

Comments
 (0)