mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-06-13 13:21:57 +03:00
Plot management force maintain option
This replaces the "refresh" menu option with a "force maintain" option. Allows you to maintain the base even if it doesn't need it to either get all your items in sync or if you are going away or similar. Tested with: dze_permanent plot true/false z_singlecurrency true/false Also fixes an undefined variable error in system_monitor that was introduced https://github.com/EpochModTeam/DayZ-Epoch/commit/8f58baf3f286454a9f398517dc4f1980bd4d5c8e
This commit is contained in:
@@ -38,21 +38,21 @@ class PlotManagement
|
||||
class RscShortcutButton_7010: ZSC_RscButtonMenuBlue
|
||||
{
|
||||
idc = -1;
|
||||
text = $STR_EPOCH_REFRESH;
|
||||
text = $STR_EPOCH_ACTIONS_MAINTAIN;
|
||||
x = 0.41 * safezoneW + safezoneX;
|
||||
y = 0.22 * safezoneH + safezoneY;
|
||||
w = 0.08 * safezoneW;
|
||||
onButtonClick = "'preview' call MaintainPlot;";
|
||||
onButtonClick = "'maintain' call MaintainPlot;";
|
||||
};
|
||||
|
||||
class RscShortcutButton_7011: ZSC_RscButtonMenuBlue
|
||||
{
|
||||
idc = -1;
|
||||
text = $STR_EPOCH_ACTIONS_MAINTAIN;
|
||||
text = $STR_EPOCH_ACTIONS_MAINTAIN_FORCE;
|
||||
x = 0.51 * safezoneW + safezoneX;
|
||||
y = 0.22 * safezoneH + safezoneY;
|
||||
w = 0.08 * safezoneW;
|
||||
onButtonClick = "'maintain' call MaintainPlot;";
|
||||
onButtonClick = "'force' call MaintainPlot;";
|
||||
};
|
||||
|
||||
class RscText_7012: ZSC_RscTextT
|
||||
|
||||
Reference in New Issue
Block a user