Last active
December 11, 2015 00:39
-
-
Save penguin2716/4518448 to your computer and use it in GitHub Desktop.
〄が含まれるツイートを検出したら即座に空リプするmikutterプラグイン
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
Plugin.create :jis_empty_reply do | |
on_appear do |ms| | |
ms.each do |m| | |
if m.message.to_s =~ /〄/ | |
Service.primary.post(:message => "#{"@" + m.user.idname}", :replyto => m) | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment