add a client moderator flag just to commit something
authoralfadur
Wed, 22 Mar 2023 18:53:00 +0300
changeset 15930 ab57c0d81748
parent 15929 b6cd49768fc5
child 15931 72f4638ee48b
add a client moderator flag just to commit something
rust/hedgewars-server/src/core/client.rs
--- a/rust/hedgewars-server/src/core/client.rs	Wed Mar 22 09:54:30 2023 +0100
+++ b/rust/hedgewars-server/src/core/client.rs	Wed Mar 22 18:53:00 2023 +0300
@@ -10,6 +10,7 @@
         const IS_CONTRIBUTOR = 0b0001_0000;
         const HAS_SUPER_POWER = 0b0010_0000;
         const IS_REGISTERED = 0b0100_0000;
+        const IS_MODERATOR = 0b1000_0000;
 
         const NONE = 0b0000_0000;
         const DEFAULT = Self::NONE.bits;