mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Adding HeadBugFix button to the ACE Options dialog (missing file)
#1738
This commit is contained in:
@ -247,14 +247,22 @@ class ACE_settingsMenu {
|
|||||||
text = CSTRING(OpenExport);
|
text = CSTRING(OpenExport);
|
||||||
x = X_PART(18);
|
x = X_PART(18);
|
||||||
action = QUOTE(if (GVAR(serverConfigGeneration) > 0) then {createDialog 'ACE_serverSettingsMenu'; });
|
action = QUOTE(if (GVAR(serverConfigGeneration) > 0) then {createDialog 'ACE_serverSettingsMenu'; });
|
||||||
};
|
};
|
||||||
class action_debug: actionClose {
|
class action_debug: actionClose {
|
||||||
idc = 1102;
|
idc = 1102;
|
||||||
text = CSTRING(DumpDebug);
|
text = CSTRING(DumpDebug);
|
||||||
x = X_PART(26.5);
|
x = X_PART(26.1);
|
||||||
action = QUOTE([] call FUNC(debugDumpToClipboard));
|
action = QUOTE([] call FUNC(debugDumpToClipboard));
|
||||||
tooltip = CSTRING(DumpDebugTooltip);
|
tooltip = CSTRING(DumpDebugTooltip);
|
||||||
};
|
};
|
||||||
|
class action_headBugFix: actionClose {
|
||||||
|
idc = 1102;
|
||||||
|
text = CSTRING(headBugFix);
|
||||||
|
x = X_PART(34);
|
||||||
|
w = W_PART(5);
|
||||||
|
action = QUOTE(0 spawn EFUNC(common,headBugFix); closedialog 0;);
|
||||||
|
tooltip = CSTRING(headBugFixTooltip);
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
class ACE_serverSettingsMenu: ACE_settingsMenu {
|
class ACE_serverSettingsMenu: ACE_settingsMenu {
|
||||||
|
Reference in New Issue
Block a user