From eb9cf78e6b2690f70dd6a05dd639ab875fa90e7c Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sat, 17 Aug 2019 20:41:49 +0100 Subject: [PATCH] EstateAccess: add some ban fields to fill one day --- OpenSim/Region/ClientStack/Linden/Caps/EstateAccess.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/OpenSim/Region/ClientStack/Linden/Caps/EstateAccess.cs b/OpenSim/Region/ClientStack/Linden/Caps/EstateAccess.cs index cd6cdef35f..c3a48d9d7d 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/EstateAccess.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/EstateAccess.cs @@ -203,6 +203,9 @@ namespace OpenSim.Region.ClientStack.Linden if (id == UUID.Zero) continue; LLSDxmlEncode.AddElem("id", id, sb); + LLSDxmlEncode.AddElem("last_login_date", "0000-00-00 00:00:00", sb); // We will not have this + LLSDxmlEncode.AddElem("ban_date", "0000-00-00 00:00:00", sb); // We will have this + LLSDxmlEncode.AddElem("banning_id", UUID.Zero, sb); // we will have this one day } LLSDxmlEncode.AddEndMap(sb); }