diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2022-04-22 22:42:21 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2022-04-22 22:42:21 -0300 |
commit | c64496741b1c9b0c5e1c5cb35e9ead95e2f8dc33 (patch) | |
tree | 9dab2dd50bb3197397ae96e5674a9fe1909a291a | |
parent | 1bc1a2e4fe227f2b4904ee6552693049d14f3803 (diff) |
Add init message
-rw-r--r-- | src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs index cae6363..356a3fa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1725,6 +1725,7 @@ pub unsafe fn hexchat_plugin_init<'ph, T>(plugin_handle: LtPhPtr<'ph>, return 0; } } + hexchat_print_str(ph, "hexchat-unsafe-plugin Copyright (C) 2018, 2021, 2022 Soni L. GPL-3.0-or-later This software is made with love by a queer trans person.", false); let mut pluginfo = if let Some(pluginfo) = PluginInfo::new(plugin_name, plugin_desc, plugin_version) { pluginfo } else { |