diff mod_block_strangers/mod_block_strangers.lua @ 774:52caf54fc270

mod_block_strangers: Bump handler priority to 200 (just because)
author Matthew Wild <mwild1@gmail.com>
date Sun, 05 Aug 2012 02:26:45 +0100
parents 954532e273be
children 853a382c9bd6
line wrap: on
line diff
--- a/mod_block_strangers/mod_block_strangers.lua	Sun Aug 05 01:49:03 2012 +0100
+++ b/mod_block_strangers/mod_block_strangers.lua	Sun Aug 05 02:26:45 2012 +0100
@@ -15,7 +15,6 @@
 	end
 end
 
-module:hook("message/bare", check_subscribed, 100);
-module:hook("message/full", check_subscribed, 100);
-
-module:hook("iq/full", check_subscribed, 100);
+module:hook("message/bare", check_subscribed, 200);
+module:hook("message/full", check_subscribed, 200);
+module:hook("iq/full", check_subscribed, 200);