소스 검색

Fix last standing player suicide

Was colliding with the last tile put after the end of the round, because
this tile was added while the player was still colliding.
DricomDragon 4 년 전
부모
커밋
51084d9750
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Player.gd

+ 1 - 1
Player.gd

@@ -92,7 +92,7 @@ func _on_tween_completed(_o, key):
 		move()
 
 func _on_crash(body):
-	if landed:
+	if landed and running:
 		stop()
 		# TODO : use enum for blocks
 		grid.set_cell(posix, posiy, 2)