Meldung beim Ausziehen gefixt

Wenn P_PLURAL gesetzt ist, ist die Meldung falsch,
Beispiel Handschuhe:

ziehe handschuhe aus -> "Du traegst kHandschuhe."

Change-Id: Iad962729231211beb68e5a7ac7a3895cf33c3fc7
diff --git a/std/clothing/wear.c b/std/clothing/wear.c
index 4b351aa..d85ea25 100644
--- a/std/clothing/wear.c
+++ b/std/clothing/wear.c
@@ -499,7 +499,7 @@
       notify_fail("Alles ausgezogen, was ging.\n");
       return 0;
     }
-    if (!Query(P_ARTICLE) || QueryProp(P_PLURAL)) {
+    if (!Query(P_ARTICLE) && !QueryProp(P_PLURAL)) {
       notify_fail( break_string(
             "Du traegst k"+name(WEN,0)+".",78) );
     }