Browse Source

Fix group error

An error in the logs showed that a liner was removed from the living
group several times.
DricomDragon 4 years ago
parent
commit
6608324232
1 changed files with 2 additions and 1 deletions
  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
 	return grid.get_cell(bposx, bposy) == 1
 
 
 func die():
 func die():
+	if alive:
+		remove_from_group("living")
 	alive = false
 	alive = false
-	remove_from_group("living")
 
 
 func spring():
 func spring():
 	alive = true
 	alive = true