EstateAccess: add some ban fields to fill one day

0.9.1.0-post-fixes
UbitUmarov 2019-08-17 20:41:49 +01:00
parent 16bf737b26
commit eb9cf78e6b
1 changed files with 3 additions and 0 deletions

View File

@ -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);
}