// @description
// Returns a list of all world scripts that will handle a given event name.
// This tag will ignore dObject identifiers (see <@link language dobject>).
// For use with <@link tag server.has_event[<event_name>]>
// -->
if (attribute.startsWith("get_event_handlers")
&& attribute.hasContext(1)) {
String eventName = attribute.getContext(1).toUpperCase();
List<WorldScriptContainer> EventsOne = EventManager.events.get("ON " + eventName);
List<WorldScriptContainer> EventsTwo = EventManager.events.get("ON " + EventManager.StripIdentifiers(eventName));
if (EventsOne == null && EventsTwo == null) {