diff options
author | Adam <Adam@Anope.org> | 2010-05-25 13:50:17 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-18 21:04:08 -0400 |
commit | f0a44ba89471e006ab10e398e9635adbc73eb674 (patch) | |
tree | d7607fd1f8678660b0fba625850786e94dd940c1 /src/core/ms_del.cpp | |
parent | 4a2b9ebcf38d6c0a2860b966421b3af125438488 (diff) |
Made NumberList take an arg to determin if it should pass numbers in descending order, fixes listing specific ranges being returned in descending order
Diffstat (limited to 'src/core/ms_del.cpp')
-rw-r--r-- | src/core/ms_del.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ms_del.cpp b/src/core/ms_del.cpp index 68c093f86..700df16b4 100644 --- a/src/core/ms_del.cpp +++ b/src/core/ms_del.cpp @@ -20,7 +20,7 @@ class MemoDelCallback : public NumberList ChannelInfo *ci; MemoInfo *mi; public: - MemoDelCallback(User *_u, ChannelInfo *_ci, MemoInfo *_mi, const std::string &list) : NumberList(list), u(_u), ci(_ci), mi(_mi) + MemoDelCallback(User *_u, ChannelInfo *_ci, MemoInfo *_mi, const std::string &list) : NumberList(list, true), u(_u), ci(_ci), mi(_mi) { } |