public override bool HandleCommand(ulong userId, string[] words)
        {
            if (m_refreshTrack.Contains(userId))
            {
                Communication.SendPrivateInformation(userId, "You may only refresh once per login.  Please relog and try again.");
                return(true);
            }

            if (!EntityManagement.ToggleMedbayGrids(userId))
            {
                Communication.SendPrivateInformation(userId, "Unable to refresh grids, server busy.");
                return(true);
            }

            m_refreshTrack.Add(userId);
            Communication.SendPrivateInformation(userId, "Grids being refreshed ... please wait a moment");
            return(true);
        }