From aa04597c5f8bb806996d604699fc8ebff6d53bdd Mon Sep 17 00:00:00 2001 From: Erik Schilling Date: Sat, 6 Apr 2013 21:36:50 +0200 Subject: Converted the Character class into a component A CharacterData was created as a proxy class in order to allow using the old serialization method. --- src/game-server/being.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/game-server/being.cpp') diff --git a/src/game-server/being.cpp b/src/game-server/being.cpp index 2237f6a..b50a5fa 100644 --- a/src/game-server/being.cpp +++ b/src/game-server/being.cpp @@ -483,6 +483,8 @@ void Being::recalculateBaseAttribute(unsigned attr) void Being::updateDerivedAttributes(unsigned attr) { + signal_attribute_changed.emit(this, attr); + LOG_DEBUG("Being: Updating derived attribute(s) of: " << attr); // Handle default actions before handing over to the script engine -- cgit