Skip to content

Commit

Permalink
Use hard-coded counter
Browse files Browse the repository at this point in the history
  • Loading branch information
theace0296 committed Oct 14, 2021
1 parent 4877791 commit bb121cd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions description.ext
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class Params
texts[] = {"1","2","3","4","5","10","Disabled"};
default = 2;
};
SPACER(__COUNTER__);
SPACER(1);
class EnvironmentOptions {
title = "~~ Environment Options ~~";
values[] = {""};
Expand All @@ -137,7 +137,7 @@ class Params
texts[] = {"0.5x (120 minutes real-world = 60 minutes in-game)","1 (60 minutes real-world = 60 minutes in-game)","2 (30 minutes real-world = 60 minutes in-game)","4 (15 minutes real-world = 60 minutes in-game)","6 (10 minutes real-world = 60 minutes in-game)","12 (5 minutes real-world = 60 minutes in-game)"};
default = 1;
};
SPACER(__COUNTER__);
SPACER(2);
class CustomMissionOptions {
title = "~~ Custom Mission Options ~~";
values[] = {""};
Expand All @@ -158,7 +158,7 @@ class Params
texts[] = {"Disable","Enable"};
default = 0;
};
SPACER(__COUNTER__);
SPACER(3);
class CustomFactionOptions {
title = "~~ Custom Faction Options ~~";
values[] = {""};
Expand Down Expand Up @@ -207,7 +207,7 @@ class Params
texts[] = {"Disable","Enable"};
default = 0;
};
SPACER(__COUNTER__);
SPACER(4);
class CustomCampaignOptions {
title = "~~ Custom Campaign Options ~~";
values[] = {""};
Expand All @@ -228,7 +228,7 @@ class Params
texts[] = {"Disable","Enable"};
default = 0;
};
SPACER(__COUNTER__);
SPACER(5);
class MissionGenerationOptions {
title = "~~ Mission Generation Options ~~";
values[] = {""};
Expand All @@ -242,7 +242,7 @@ class Params
texts[] = {"Disable","Enable"};
default = 1;
};
SPACER(__COUNTER__);
SPACER(6);
class AddonSpecificOptions {
title = "~~ Addon Specific Options ~~";
values[] = {""};
Expand All @@ -256,7 +256,7 @@ class Params
texts[] = {"Disable","Enable"};
default = 0;
};
SPACER(__COUNTER__);
SPACER(7);
class TechnicalOptions {
title = "~~ Technical Options ~~";
values[] = {""};
Expand Down

0 comments on commit bb121cd

Please sign in to comment.