소스 검색

Fix group error

An error in the logs showed that a liner was removed from the living
group several times.
DricomDragon 5 년 전
부모
커밋
6608324232
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Player.gd

+ 2 - 1
Player.gd

@@ -151,8 +151,9 @@ func has_block_on(left_or_right:int):
 	return grid.get_cell(bposx, bposy) == 1
 
 func die():
+	if alive:
+		remove_from_group("living")
 	alive = false
-	remove_from_group("living")
 
 func spring():
 	alive = true