changeset 64:bc9f452ee168

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 05 Mar 2025 21:43:11 -0700
parents afd5ab5b02a2
children 6cfef9850520
files src/lib/Chat.luan
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib/Chat.luan	Wed Mar 05 18:43:06 2025 -0700
+++ b/src/lib/Chat.luan	Wed Mar 05 21:43:11 2025 -0700
@@ -36,7 +36,7 @@
 end
 
 local function get_chat_key(user_ids)
-	#user_ids > 1 or error()
+	#user_ids > 1 or error "You can't chat with yourself"
 	sort(user_ids)
 	return concat(user_ids,"~")
 end