Cleanup: use CHAT_CHANNEL_DEBUG instead of 2147483647

master
Dave SIMmONs 2011-04-05 10:34:24 -07:00
parent 18f5bbfdd3
commit 5e486cf21b
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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.