commit | 2e16424788da35f644e8561a2eed8f50b91e978a | [log] [tgz] |
---|---|---|
author | Arathorn <mud@mg.mud.de> | Mon Jul 27 23:49:19 2020 +0200 |
committer | MG Mud User <mud@mg.mud.de> | Mon Jul 27 23:49:19 2020 +0200 |
tree | babb55a48feca3599a90eab9079c2ff25534766b | |
parent | 5fecd8349cdc3a7831f7275dadc22956d25589bf [diff] [blame] |
Type-Fixes und Typecast-Fixes Change-Id: I7e1fe98f07a4693350ccd90c9856791283fea1e4
diff --git a/std/items/fishing/haken.c b/std/items/fishing/haken.c index 66b91f4..91a2427 100644 --- a/std/items/fishing/haken.c +++ b/std/items/fishing/haken.c
@@ -138,7 +138,7 @@ int _query_total_weight() { int tw; - foreach(int w: all_inventory(ME)+({ME})) + foreach(object w: all_inventory(ME)+({ME})) tw += w->QueryProp(P_WEIGHT); return tw; }