Apply suggestions from code review

Co-Authored-By: Christian <wyqer84@gmail.com>
This commit is contained in:
Filip Maciejewski 2019-09-05 16:59:56 +02:00 committed by GitHub
parent 111e815235
commit fdaed458bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -2424,6 +2424,7 @@
</Key> </Key>
<Key ID="STR_PARAM_DELAY_DESPAWN_MAX"> <Key ID="STR_PARAM_DELAY_DESPAWN_MAX">
<Original>Maximum sector deactivation delay (starts increasing after 5th activation minute)</Original> <Original>Maximum sector deactivation delay (starts increasing after 5th activation minute)</Original>
<German>Maximale Verzögerung zur Sektor Deaktivierung (Beginnt nach 5 Minuten seit Aktivierung)</German>
</Key> </Key>
<Key ID="STR_DEPLOY_IN_PROGRESS"> <Key ID="STR_DEPLOY_IN_PROGRESS">
<Original>Deployment in progress...</Original> <Original>Deployment in progress...</Original>

View File

@ -266,8 +266,8 @@ class Params
}; };
class DelayDespawnMax { class DelayDespawnMax {
title = $STR_PARAM_DELAY_DESPAWN_MAX; title = $STR_PARAM_DELAY_DESPAWN_MAX;
values[] = {0,5,10,15,30}; values[] = {0,5,10,15,20,25,30};
texts[] = {$STR_PARAMS_DISABLED,"5","10", "15","30"}; texts[] = {$STR_PARAMS_DISABLED, "5", "10", "15", "20", "25", "30"};
default = 5; default = 5;
}; };
class Spacer3 { class Spacer3 {