# HG changeset patch # User alfadur # Date 1679500380 -10800 # Node ID ab57c0d81748ee568a460bbc184194f37fbdb9f9 # Parent b6cd49768fc5fc6556b8efaf08bdb4ba85b00b05 add a client moderator flag just to commit something diff -r b6cd49768fc5 -r ab57c0d81748 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;