Make it so you can't respawn if you don't have one score

This commit is contained in:
2025-06-08 19:14:22 -07:00
parent 00e3e57767
commit cf7952cce1

View File

@@ -277,7 +277,7 @@ public class GamePlayer : MonoBehaviour
}
if (doRestart)
{
Respawn();
if (score != 0) Respawn();
}
}