From: Matthias Braun Date: Mon, 29 Nov 2004 14:54:05 +0000 (+0000) Subject: update statistics again if coins are collected X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=8f9dfa122134b04d68140dacf7d16e4a064e1584;p=supertux.git update statistics again if coins are collected SVN-Revision: 2224 --- 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(); }