We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76fd1bf commit 07e50f9Copy full SHA for 07e50f9
Enemies/MagicDrone.tscn
@@ -9,7 +9,7 @@ radius = 8.0
9
"enemy",
10
]]
11
collision_layer = 8
12
-collision_mask = 143
+collision_mask = 135
13
script = ExtResource( 1 )
14
15
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
Spells/EvilSight.gd
@@ -31,7 +31,7 @@ func _physics_process(delta):
31
var v := Vector2(x, y)
32
if v.length() < 2:
33
WorldMap.set_cellv(v+pos,-1)
34
- Player.health.temperature += 1/240.0
+ Player.health.temperature += 1/120.0
35
elif get_collider().has_method("health_object"):
36
get_collider().health_object().temp_change(5.0)
37
Player.health.temperature += 1/60.0
0 commit comments