From 75d0c2997346b802145492b033b65a6236823d20 Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Thu, 5 Feb 2026 16:38:01 +0100 Subject: [PATCH] Add OrderedDictionary to sandbox whitelist Fixes #6411 --- RELEASE-NOTES.md | 1 + Robust.Shared/ContentPack/Sandbox.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index f9a73fe18..61f09a18e 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -40,6 +40,7 @@ END TEMPLATE--> ### New features * If a sandbox error is caused by a compiler-generated method, the engine will now attempt to point out which using code is responsible. +* Added `OrderedDictionary` to the sandbox whitelist. ### Bugfixes diff --git a/Robust.Shared/ContentPack/Sandbox.yml b/Robust.Shared/ContentPack/Sandbox.yml index c969a9d03..3ac5f6fe2 100644 --- a/Robust.Shared/ContentPack/Sandbox.yml +++ b/Robust.Shared/ContentPack/Sandbox.yml @@ -444,6 +444,7 @@ Types: LinkedList`1: { All: True } LinkedListNode`1: { All: True } List`1: { All: True } + OrderedDictionary`2: { All: True } Queue`1: { All: True } ReferenceEqualityComparer: { All: True } SortedDictionary`2: { All: True }