mod_block_strangers: Bump handler priority to 200 (just because)
authorMatthew Wild <mwild1@gmail.com>
Sun, 05 Aug 2012 02:26:45 +0100
changeset 774 52caf54fc270
parent 773 107eb83aa732
child 775 70ff25db37fa
mod_block_strangers: Bump handler priority to 200 (just because)
mod_block_strangers/mod_block_strangers.lua
--- 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);