Typecasts Gefixt.
Teilweise ausgebaut, teilweise zu deklarativen Casts geaendert bzw.
deklarative Casts hinzugefuegt.
Weiterhin ein paar call_other() auf this_object() ausgebaut.
Change-Id: I0c493914c41c53e884aaf80b01db600aeb6508e9
diff --git a/room/orakel.c b/room/orakel.c
index 5419a99..061368a 100644
--- a/room/orakel.c
+++ b/room/orakel.c
@@ -76,8 +76,8 @@
int sps; // Stufenpunkte des Spielers
platt = this_player()->QueryProp(P_ATTRIBUTES);
- summe = (int)platt["int"] + (int)platt["con"] +
- (int)platt["dex"] + (int)platt["str"] - 4;
+ summe = platt["int"] + platt["con"] +
+ platt["dex"] + platt["str"] - 4;
summe += sizeof(this_player()->QueryProp(P_KNOWN_POTIONROOMS));
sps = this_player()->QueryProp(P_LEP);