diff --git a/addons/optionsmenu/functions/fnc_debugDumpToClipboard.sqf b/addons/optionsmenu/functions/fnc_debugDumpToClipboard.sqf
index 04f66112e7..755982e569 100644
--- a/addons/optionsmenu/functions/fnc_debugDumpToClipboard.sqf
+++ b/addons/optionsmenu/functions/fnc_debugDumpToClipboard.sqf
@@ -48,6 +48,18 @@ if (isNull ace_player) then {"null"} else {animationState ace_player}];
 [_text] call _outputText;
 
 
+_text = format ["
+------ACE Settings------"];
+[_text] call _outputText;
+
+
+{
+    _var = missionNamespace getVariable [(_x select 0), "ERROR: Not Defined"];
+    _text = format ["%1 - %2", (_x select 0), _var];
+    [_text] call _outputText;
+} forEach EGVAR(common,settings);
+
+
 _text = format ["
 ------Array Info (count >= %1)------", MIN_ARRAY_SIZE];
 [_text] call _outputText;