Cleanup: use CHAT_CHANNEL_DEBUG instead of 2147483647
parent
18f5bbfdd3
commit
5e486cf21b
|
|
@ -694,7 +694,7 @@ public:
|
|||
{
|
||||
S32 channel = tokens[0].asInteger();
|
||||
// VWR-19499 Restrict function to chat channels greater than 0.
|
||||
if ((channel > 0) && (channel < 2147483647))
|
||||
if ((channel > 0) && (channel < CHAT_CHANNEL_DEBUG))
|
||||
{
|
||||
retval = true;
|
||||
// Say mesg on channel
|
||||
|
|
|
|||
|
|
@ -895,7 +895,7 @@ public:
|
|||
{
|
||||
S32 channel = tokens[0].asInteger();
|
||||
// VWR-19499 Restrict function to chat channels greater than 0.
|
||||
if ((channel > 0) && (channel < 2147483647))
|
||||
if ((channel > 0) && (channel < CHAT_CHANNEL_DEBUG))
|
||||
{
|
||||
retval = true;
|
||||
// Send unescaped message, see EXT-6353.
|
||||
|
|
|
|||
Loading…
Reference in New Issue