indent schmindent

This commit is contained in:
Flummi 2023-07-08 21:26:02 +00:00
parent bcdd5687de
commit 0e6da794da

View File

@ -3,10 +3,10 @@ use strict;
use utf8;
sub pokerschmoker_cb {
my($data, $mod, $mod_data, $msg) = @_;
if($msg =~ /^pj/) {
$msg = "poker join";
my($data, $mod, $mod_data, $msg) = @_;
if($msg =~ /^pj/) {
$msg = "poker join";
}
elsif($msg =~ /^pl/) {
$msg = "poker leave";
@ -18,7 +18,7 @@ sub pokerschmoker_cb {
$msg = "check";
}
return $msg;
return $msg;
}
weechat::register("pokerschmoker.pl", "flummi", "1.0", "MIT", "pokerschmoker", "", "");