Skip to content

Instantly share code, notes, and snippets.

@ItsOnlyBinary
Created May 14, 2020 00:00
Show Gist options
  • Save ItsOnlyBinary/ba6104952e9411164dec631a3e02538c to your computer and use it in GitHub Desktop.
Save ItsOnlyBinary/ba6104952e9411164dec631a3e02538c to your computer and use it in GitHub Desktop.
<script>
kiwi.plugin('customise', function(kiwi, log) {
kiwi.on('irc.message', (message, network, event) => {
if (message.type === 'notice' && message.from_server === true) {
message.from_server = false;
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment