From 8f9dfa122134b04d68140dacf7d16e4a064e1584 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Mon, 29 Nov 2004 14:54:05 +0000 Subject: [PATCH] update statistics again if coins are collected SVN-Revision: 2224 --- src/object/coin.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/object/coin.cpp b/src/object/coin.cpp index 0799ef02e..359b4522d 100644 --- a/src/object/coin.cpp +++ b/src/object/coin.cpp @@ -8,6 +8,7 @@ #include "sector.h" #include "scene.h" #include "gameobjs.h" +#include "statistics.h" Coin::Coin(const Vector& pos) { @@ -37,6 +38,7 @@ Coin::collect() { Sector::current()->player->get_status().incCoins(); Sector::current()->add_object(new BouncyCoin(get_pos())); + global_stats.add_points(COINS_COLLECTED_STAT, 1); remove_me(); } -- 2.11.0