diff options
Diffstat (limited to 'src/modules/m_park.cpp')
-rw-r--r-- | src/modules/m_park.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_park.cpp b/src/modules/m_park.cpp index 716c91579..6a640f318 100644 --- a/src/modules/m_park.cpp +++ b/src/modules/m_park.cpp @@ -125,7 +125,7 @@ void handle_unpark(char **parameters, int pcnt, userrec *user) if (key == atoi(parameters[1])) { // first part the user from all chans theyre on, so things dont get messy - for (int i = 0; i != MAXCHANS; i++) + for (int i = 0; i < user->chans.size(); i++) { if (user->chans[i].channel != NULL) { |