From bef22740f67452eab1b70896448c349861e23272 Mon Sep 17 00:00:00 2001 From: WahPlus Date: Thu, 30 Oct 2025 15:18:32 +0200 Subject: [PATCH] Minor punctuation change in halyde/kernel/modules/user.lua --- halyde/kernel/modules/user.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/halyde/kernel/modules/user.lua b/halyde/kernel/modules/user.lua index e7564a6..ba59d4d 100644 --- a/halyde/kernel/modules/user.lua +++ b/halyde/kernel/modules/user.lua @@ -27,14 +27,14 @@ function module.init() local userRegistry = json.decode(data) if not userRegistry[userId] then - return false, "No such UID" + return false, "No such UID." end local salt = md5.sumhexa(userRegistry[userId].name) -- A little bit of salt and pepper local passwordHash = md5.sumhexa(userPassword .. salt) if passwordHash ~= userRegistry[userId].hash then wait(3) -- Something to hopefully shove away brute forcers - return false, "Password incorrect" + return false, "Password incorrect." end local task = coroutine.create(func)