From a7ce1e8e30c8808b6289bab281354af4f1e15bd7 Mon Sep 17 00:00:00 2001 From: Alex Belanger Date: Sat, 9 Mar 2024 01:00:14 -0500 Subject: [PATCH] Hack, no longer construct StdinReader. --- lib/PBot/Core.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PBot/Core.pm b/lib/PBot/Core.pm index 3447ae66..8a437df5 100644 --- a/lib/PBot/Core.pm +++ b/lib/PBot/Core.pm @@ -199,7 +199,7 @@ sub initialize($self, %conf) { $self->{plugins} = PBot::Core::Plugins->new(pbot => $self, %conf); $self->{process_manager} = PBot::Core::ProcessManager->new(pbot => $self, %conf); $self->{select_handler} = PBot::Core::SelectHandler->new(pbot => $self, %conf); - $self->{stdin_reader} = PBot::Core::StdinReader->new(pbot => $self, %conf); + # $self->{stdin_reader} = PBot::Core::StdinReader->new(pbot => $self, %conf); $self->{webpaste} = PBot::Core::WebPaste->new(pbot => $self, %conf); # load commands in Commands directory