scroll

- irc bot to play ascii art
git clone git://git.acid.vegas/scroll.git
Log | Files | Refs | Archive | README | LICENSE

commit 9ccfe4aa8492ce4f218a3edb9da6a9d81fe2cd0e
parent b6abd6d6f9809341885c13ae7a8a61f64f182ee7
Author: acidvegas <acid.vegas@acid.vegas>
Date: Wed, 28 Jun 2023 14:19:35 -0400

Added missing alert on settings change and fixed missing palette argument

Diffstat:
Mimg2irc.py | 2+-
Mscroll.py | 1+

2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/img2irc.py b/img2irc.py
@@ -92,7 +92,7 @@ def convert_image(image, max_line_len, img_width, palette):
 		if len(buf[-1].encode('utf-8', 'ignore')) > max_line_len:
 			if img_width - 5 < 10:
 				raise Exception('internal error')
-			return convert_image(image, max_line_len, img_width-5)
+			return convert_image(image, max_line_len, img_width-5, palette)
 	return buf
 
 def hex_to_rgb(color):
diff --git a/scroll.py b/scroll.py
@@ -329,6 +329,7 @@ class Bot():
 													await self.irc_error(chan, 'invalid option', 'must be on or off')
 											else:
 												self.settings[setting] = option
+												await self.sendmsg(chan, color('OK', light_green))
 										else:
 											await self.irc_error(chan, 'invalid setting', setting)
 								elif len(args) == 2: