commit | 61af87f080caf0e83556ba62fb69fc352787401e | [log] [tgz] |
---|---|---|
author | Zesstra <zesstra@zesstra.de> | Thu Jan 04 22:10:22 2024 +0100 |
committer | MG Mud User <mud@mg.mud.de> | Thu Jan 04 22:10:22 2024 +0100 |
tree | 86d5afde51383a9c2b9e3b6d57b60098e5d7f817 | |
parent | a2d8e632106e81c7d21b59b6eb761a89aa830047 [diff] |
Fix fuer Klammerfehler. Change-Id: I75b7624d6d0f91bb6ee6a0c159378713a1b3353f
diff --git a/std/living/combat.c b/std/living/combat.c index 2a98e3e..d6fbc53 100644 --- a/std/living/combat.c +++ b/std/living/combat.c
@@ -913,8 +913,8 @@ function int(object o) { return (objectp(o) && - ((environment(o) == environment(ME) || environment(o) == ME) && - o->PresentPosition() == 1; + (environment(o) == environment(ME) || environment(o) == ME) && + o->PresentPosition() == 1); }); }