*** VERSION 5.1.0 ***
[NeonServV5.git] / src / UserNode.h
index 051a1539696ad12460cabf4c6c2e4adad485d334..08b6d97f9b9e708c9773ebfa99710baf8d5d2338 100644 (file)
@@ -1,4 +1,4 @@
-/* UserNode.h - NeonServ v5.0
+/* UserNode.h - NeonServ v5.1
  * Copyright (C) 2011  Philipp Kreil (pk910)
  * 
  * This program is free software: you can redistribute it and/or modify
@@ -48,7 +48,7 @@ struct UserNode {
     struct UserNode *next;
 };
 
-#define isNetworkService(USER) (USER->flags & (USERFLAG_ISBOT | USERFLAG_ISIRCOP))
+#define isNetworkService(USER) (USER->flags & (USERFLAG_ISBOT | USERFLAG_ISIRCOP | USERFLAG_ISSERVER))
 #define isBot(USER) (USER->flags & (USERFLAG_ISBOT))
 
 void init_UserNode();