summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/actions.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/actions.c b/src/actions.c
index bb5a36b..18d6c4b 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -1618,10 +1618,10 @@ cmd_rudeness (int interactive, void *data)
return NULL;
}
- rp_honour_transient_raise = num & 1;
- rp_honour_normal_raise = num & 2;
- rp_honour_transient_map = num & 4;
- rp_honour_normal_map = num & 8;
+ rp_honour_transient_raise = num & 1 ? 1 : 0;
+ rp_honour_normal_raise = num & 2 ? 1 : 0;
+ rp_honour_transient_map = num & 4 ? 1 : 0;
+ rp_honour_normal_map = num & 8 ? 1 : 0;
return NULL;
}