diff options
author | Adam <Adam@anope.org> | 2012-11-07 15:17:58 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-11-07 15:17:58 -0500 |
commit | 52fa66820c5166f30da65db14986483cdb6cd916 (patch) | |
tree | 0f1c43e39c6b2a279676d9e2acffdefe045c74fa | |
parent | 72eb2ccf50148c7028942155fd253d86f6669dda (diff) |
Give suspend the correct permission in botserv.conf, fix pch build
-rw-r--r-- | data/botserv.example.conf | 5 | ||||
-rw-r--r-- | include/servers.h | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/data/botserv.example.conf b/data/botserv.example.conf index 66fb55489..568a1cbd1 100644 --- a/data/botserv.example.conf +++ b/data/botserv.example.conf @@ -351,12 +351,11 @@ fantasy { name = "QOP"; command = "chanserv/qop"; } fantasy { name = "SEEN"; command = "chanserv/seen"; } fantasy { name = "SOP"; command = "chanserv/sop"; } fantasy { name = "STATUS"; command = "chanserv/status"; } -fantasy { name = "SUSPEND"; command = "chanserv/suspend"; } +fantasy { name = "SUSPEND"; command = "chanserv/suspend"; permission = "chanserv/suspend"; } fantasy { name = "SYNC"; command = "chanserv/sync"; } fantasy { name = "TOPIC"; command = "chanserv/topic"; } fantasy { name = "UNBAN"; command = "chanserv/unban"; } -fantasy { name = "UNBAN"; command = "chanserv/unban"; } -fantasy { name = "UNSUSPEND"; command = "chanserv/unsuspend"; } +fantasy { name = "UNSUSPEND"; command = "chanserv/unsuspend"; permission = "chanserv/suspend"; } fantasy { name = "UP"; command = "chanserv/up"; } fantasy { name = "VOICE"; command = "chanserv/voice"; } fantasy { name = "VOP"; command = "chanserv/vop"; } diff --git a/include/servers.h b/include/servers.h index 8bd0080fc..339b4db19 100644 --- a/include/servers.h +++ b/include/servers.h @@ -3,6 +3,7 @@ #include "services.h" #include "anope.h" +#include "extensible.h" /* Anope */ extern CoreExport Server *Me; |