mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-07 00:03:12 +02:00
Change maximum chanmode +l value to 1 million and "coincidentally" also
change the IsInvalidChannelTS() macro to check for this value or lower.
This commit is contained in:
+1
-1
@@ -2007,7 +2007,7 @@ struct Link {
|
||||
} value;
|
||||
};
|
||||
|
||||
#define IsInvalidChannelTS(x) ((x) < 750000) /**< Invalid channel creation time */
|
||||
#define IsInvalidChannelTS(x) ((x) <= 1000000) /**< Invalid channel creation time */
|
||||
|
||||
/**
|
||||
* @addtogroup CommonStructs
|
||||
|
||||
Reference in New Issue
Block a user