소스 검색

shooting scientists no longer yields coins

Tim Strasser 2 년 전
부모
커밋
cbe4bdb4c1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      includes/particle.c

+ 1 - 1
includes/particle.c

@@ -19,7 +19,7 @@ void particle_tick(PARTICLE* const particles, SCIENTIST* const scientists, int*
                          particles[i].point.y > scientists[j].point.y + SCIENTIST_HEIGHT ||
                          particles[i].point.y < scientists[j].point.y)) {
                         scientists[j].state = ScientistStateDead;
-                        (*points) += 2; // Increase the score by 2
+                        // (*points) += 2; // Increase the score by 2
                     }
                 }
             }