added GPL header to all files and added INSTALL AUTHORS COPYING files.
[NeonServV5.git] / src / modcmd.c
index 5476d5e00a9798fff30610f4f01c2f5f70a4465c..a80ccca59424b9bd39097e36d2942b4ac44df7bc 100644 (file)
@@ -1,3 +1,19 @@
+/* modcmd.c - NeonServ v5.0
+ * Copyright (C) 2011  Philipp Kreil (pk910)
+ * 
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License 
+ * along with this program. If not, see <http://www.gnu.org/licenses/>. 
+ */
 
 #include "modcmd.h"
 #include "IRCEvents.h"
@@ -53,12 +69,16 @@ static int get_binds_index(char first_char) {
 }
 
 struct ClientSocket* get_prefered_bot(int botid) {
-    struct ClientSocket *client;
+    struct ClientSocket *client, *lowbot = NULL;
     for(client = getBots(SOCKET_FLAG_READY, NULL); client; client = getBots(SOCKET_FLAG_READY, client)) {
-        if(client->botid == botid && (client->flags & SOCKET_FLAG_PREFERRED))
-            return client;
+        if(client->botid == botid) {
+            if((client->flags & SOCKET_FLAG_PREFERRED))
+                return client;
+            else
+                lowbot = client;
+        }
     }
-    return NULL;
+    return lowbot;
 }
 
 static char* get_channel_trigger(int botid, struct ChanNode *chan) {