|
|
@ -35,7 +35,9 @@ const DZ_NAME = '洞主'; |
|
|
|
function check_block(info) { |
|
|
|
function check_block(info) { |
|
|
|
return ( |
|
|
|
return ( |
|
|
|
((window.config.block_tmp && info.is_tmp) || |
|
|
|
((window.config.block_tmp && info.is_tmp) || |
|
|
|
window.config.block_words_v4.some((word) => info.text.includes(word))) && |
|
|
|
window.config.block_words_v4.some((word) => info.text.includes(word)) || |
|
|
|
|
|
|
|
(info.cw && |
|
|
|
|
|
|
|
window.config.block_words_v4.some((word) => info.cw.includes(word)))) && |
|
|
|
!info.can_del |
|
|
|
!info.can_del |
|
|
|
); |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|