From 00c56f1417730853f1573c39be3edf319246d9cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Mon, 19 May 2025 18:36:18 +0300 Subject: [PATCH] add is_system method to transient user --- util.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util.lua b/util.lua index 09cf576..6a024bc 100644 --- a/util.lua +++ b/util.lua @@ -20,6 +20,9 @@ util.TransientUser = { is_guest = function (self) return true end, + is_system = function (self) + return false + end, is_logged_in_guest = function (self) return false end,