# HG changeset patch # User Matthew Wild # Date 1344130005 -3600 # Node ID 52caf54fc2700103ac12e1aa990cd13e3cdd6692 # Parent 107eb83aa7328c5ba0d7921ae6555ff69c84e61d mod_block_strangers: Bump handler priority to 200 (just because) diff -r 107eb83aa732 -r 52caf54fc270 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);