Passed
Push — trunk ( 72cafa...79712a )
by SuperNova.WS
03:36
created
classes/Fleet/MissionExplore.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
    *
41 41
    * @var int[] $shipsToRemove
42 42
    */
43
-  protected $shipsToRemove = [SHIP_COLONIZER, SHIP_SPY,];
43
+  protected $shipsToRemove = [SHIP_COLONIZER, SHIP_SPY, ];
44 44
 
45 45
   // -------------------------------------------------------------------------------------------------------------------
46 46
   /**
Please login to merge, or discard this patch.
classes/Common/GlobalContainer.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -86,87 +86,87 @@
 block discarded – undo
86 86
 
87 87
     // Services --------------------------------------------------------------------------------------------------------
88 88
     // Default db
89
-    $gc->db = function (GlobalContainer $c) {
89
+    $gc->db = function(GlobalContainer $c) {
90 90
       classSupernova::$db = new \db_mysql($c);
91 91
 
92 92
       return classSupernova::$db;
93 93
     };
94 94
 
95
-    $gc->debug = function (/** @noinspection PhpUnusedParameterInspection */
95
+    $gc->debug = function(/** @noinspection PhpUnusedParameterInspection */
96 96
       GlobalContainer $c) {
97 97
       return new \debug();
98 98
     };
99 99
 
100
-    $gc->cache = function (GlobalContainer $gc) {
100
+    $gc->cache = function(GlobalContainer $gc) {
101 101
       return new \classCache($gc->cachePrefix);
102 102
     };
103 103
 
104
-    $gc->config = function (GlobalContainer $gc) {
104
+    $gc->config = function(GlobalContainer $gc) {
105 105
       return new \classConfig($gc->cachePrefix);
106 106
     };
107 107
 
108 108
 
109
-    $gc->repository = function (GlobalContainer $gc) {
109
+    $gc->repository = function(GlobalContainer $gc) {
110 110
       return new Repository($gc);
111 111
     };
112 112
 
113
-    $gc->storage = function (GlobalContainer $gc) {
113
+    $gc->storage = function(GlobalContainer $gc) {
114 114
       return new \Storage($gc);
115 115
     };
116 116
 
117
-    $gc->design = function (GlobalContainer $gc) {
117
+    $gc->design = function(GlobalContainer $gc) {
118 118
       return new \Design($gc);
119 119
     };
120 120
 
121
-    $gc->bbCodeParser = function (GlobalContainer $gc) {
121
+    $gc->bbCodeParser = function(GlobalContainer $gc) {
122 122
       return new \BBCodeParser($gc);
123 123
     };
124 124
 
125
-    $gc->fleetDispatcher = function (GlobalContainer $gc) {
125
+    $gc->fleetDispatcher = function(GlobalContainer $gc) {
126 126
       return new \FleetDispatcher($gc);
127 127
     };
128 128
 
129
-    $gc->watchdog = function (GlobalContainer $gc) {
129
+    $gc->watchdog = function(GlobalContainer $gc) {
130 130
       return new Watchdog($gc);
131 131
     };
132 132
 
133
-    $gc->eventBus = function (GlobalContainer $gc) {
133
+    $gc->eventBus = function(GlobalContainer $gc) {
134 134
       return new EventBus($gc);
135 135
     };
136 136
 
137
-    $gc->valueStorage = function (GlobalContainer $gc) {
137
+    $gc->valueStorage = function(GlobalContainer $gc) {
138 138
       return new ValueStorage([]);
139 139
     };
140 140
 
141
-    $gc->bonusCatalog = function (GlobalContainer $gc) {
141
+    $gc->bonusCatalog = function(GlobalContainer $gc) {
142 142
       return new BonusCatalog($gc);
143 143
     };
144 144
 
145
-    $gc->general = function (GlobalContainer $gc) {
145
+    $gc->general = function(GlobalContainer $gc) {
146 146
       return new General($gc);
147 147
     };
148 148
 
149
-    $gc->economicHelper = function (GlobalContainer $gc) {
149
+    $gc->economicHelper = function(GlobalContainer $gc) {
150 150
       return new EconomicHelper($gc);
151 151
     };
152 152
 
153
-    $gc->playerLevelHelper = function (GlobalContainer $gc) {
153
+    $gc->playerLevelHelper = function(GlobalContainer $gc) {
154 154
       return new PlayerLevelHelper($gc);
155 155
     };
156 156
 
157 157
     // Dummy objects ---------------------------------------------------------------------------------------------------
158
-    $gc->theUser = function (GlobalContainer $gc) {
158
+    $gc->theUser = function(GlobalContainer $gc) {
159 159
       return new \TheUser($gc);
160 160
     };
161 161
 
162 162
 
163 163
     // Models ----------------------------------------------------------------------------------------------------------
164 164
     $gc->skinEntityClass = \SkinV2::class;
165
-    $gc->skinModel = function (GlobalContainer $gc) {
165
+    $gc->skinModel = function(GlobalContainer $gc) {
166 166
       return new \SkinModel($gc);
167 167
     };
168 168
 
169
-    $gc->textModel = function (GlobalContainer $gc) {
169
+    $gc->textModel = function(GlobalContainer $gc) {
170 170
       return new \TextModel($gc);
171 171
     };
172 172
 
Please login to merge, or discard this patch.
includes/update.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -359,7 +359,7 @@
 block discarded – undo
359 359
       );
360 360
     }
361 361
 
362
-    updPatchApply(1, function () {
362
+    updPatchApply(1, function() {
363 363
       $q = upd_do_query("SELECT `messageid`, `user` FROM `{{chat}}`", true);
364 364
       while ($row = db_fetch($q)) {
365 365
         if (strpos($row['user'], 'a:') !== 0) {
Please login to merge, or discard this patch.
includes/constants.php 1 patch
Spacing   +245 added lines, -245 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if(defined('__SN_CONSTANTS_DEFINED') && __SN_CONSTANTS_DEFINED === true) {
3
+if (defined('__SN_CONSTANTS_DEFINED') && __SN_CONSTANTS_DEFINED === true) {
4 4
   return;
5 5
 }
6 6
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 define('SN_ROOT_VIRTUAL', 'http' . (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on' ? 's' : '') . '://' . $_server_http_host . SN_ROOT_RELATIVE);
36 36
 
37 37
 $_server_server_name = isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : '';
38
-if(strpos(strtolower($_server_server_name), 'google.') !== false) {
38
+if (strpos(strtolower($_server_server_name), 'google.') !== false) {
39 39
   define('SN_GOOGLE', true);
40 40
 }
41 41
 define('SN_ROOT_VIRTUAL_PARENT', str_replace('//google.', '//', SN_ROOT_VIRTUAL));
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
 
57 57
 // Game type constants starts with GAME_
58 58
 define('GAME_SUPERNOVA', 0);
59
-define('GAME_OGAME'    , 1);
60
-define('GAME_BLITZ'    , 2);
59
+define('GAME_OGAME', 1);
60
+define('GAME_BLITZ', 2);
61 61
 
62 62
 // Date & time range constants
63 63
 define('DATE_FOREVER', 2000000000);
@@ -70,15 +70,15 @@  discard block
 block discarded – undo
70 70
 define('PERIOD_YEAR', PERIOD_DAY * 365);
71 71
 define('PERIOD_FOREVER', PERIOD_YEAR * 100);
72 72
 
73
-define('PERIOD_MINUTE_2' , PERIOD_MINUTE * 2);
74
-define('PERIOD_MINUTE_3' , PERIOD_MINUTE * 3);
75
-define('PERIOD_MINUTE_5' , PERIOD_MINUTE * 5);
73
+define('PERIOD_MINUTE_2', PERIOD_MINUTE * 2);
74
+define('PERIOD_MINUTE_3', PERIOD_MINUTE * 3);
75
+define('PERIOD_MINUTE_5', PERIOD_MINUTE * 5);
76 76
 define('PERIOD_MINUTE_10', PERIOD_MINUTE * 10);
77 77
 define('PERIOD_MINUTE_15', PERIOD_MINUTE * 15);
78
-define('PERIOD_DAY_3'    , PERIOD_DAY * 3);
79
-define('PERIOD_WEEK_2'   , PERIOD_WEEK * 2);
80
-define('PERIOD_MONTH_2'  , PERIOD_MONTH * 2);
81
-define('PERIOD_MONTH_3'  , PERIOD_MONTH * 3);
78
+define('PERIOD_DAY_3', PERIOD_DAY * 3);
79
+define('PERIOD_WEEK_2', PERIOD_WEEK * 2);
80
+define('PERIOD_MONTH_2', PERIOD_MONTH * 2);
81
+define('PERIOD_MONTH_3', PERIOD_MONTH * 3);
82 82
 
83 83
 define('FONT_SIZE_PERCENT_MIN', 56.25);
84 84
 define('FONT_SIZE_PERCENT_DEFAULT', 68.75);
@@ -133,38 +133,38 @@  discard block
 block discarded – undo
133 133
 
134 134
 // Mot qui sont interdit a la saisie !
135 135
 global $ListCensure;
136
-$ListCensure = array ( '/</', '/>/', '/script/i', '/doquery/i', '/http/i', '/javascript/i');
136
+$ListCensure = array('/</', '/>/', '/script/i', '/doquery/i', '/http/i', '/javascript/i');
137 137
 
138 138
 // Confirmation record types
139
-define('CONFIRM_REGISTRATION'  , 1);
139
+define('CONFIRM_REGISTRATION', 1);
140 140
 define('CONFIRM_PASSWORD_RESET', 2);
141
-define('CONFIRM_DELETE'        , 3);
141
+define('CONFIRM_DELETE', 3);
142 142
 
143 143
 define('AFFILIATE_MM_TO_REFERRAL_DM', 2);
144 144
 
145 145
 // Ally diplomacy statuses
146
-define('ALLY_DIPLOMACY_SELF'         , 'self');
147
-define('ALLY_DIPLOMACY_NEUTRAL'      , 'neutral');
148
-define('ALLY_DIPLOMACY_WAR'          , 'war');
149
-define('ALLY_DIPLOMACY_PEACE'        , 'peace');
146
+define('ALLY_DIPLOMACY_SELF', 'self');
147
+define('ALLY_DIPLOMACY_NEUTRAL', 'neutral');
148
+define('ALLY_DIPLOMACY_WAR', 'war');
149
+define('ALLY_DIPLOMACY_PEACE', 'peace');
150 150
 define('ALLY_DIPLOMACY_CONFEDERATION', 'confederation');
151
-define('ALLY_DIPLOMACY_FEDERATION'   , 'federation');
152
-define('ALLY_DIPLOMACY_UNION'        , 'union');
153
-define('ALLY_DIPLOMACY_MASTER'       , 'master');
154
-define('ALLY_DIPLOMACY_SLAVE'        , 'slave');
151
+define('ALLY_DIPLOMACY_FEDERATION', 'federation');
152
+define('ALLY_DIPLOMACY_UNION', 'union');
153
+define('ALLY_DIPLOMACY_MASTER', 'master');
154
+define('ALLY_DIPLOMACY_SLAVE', 'slave');
155 155
 
156 156
 define('ALLY_PROPOSE_SEND', 0);
157 157
 
158 158
 // Quest types
159
-define('QUEST_TYPE_BUILD'   , 1);
159
+define('QUEST_TYPE_BUILD', 1);
160 160
 define('QUEST_TYPE_RESEARCH', 2);
161
-define('QUEST_TYPE_COMBAT'  , 3);
161
+define('QUEST_TYPE_COMBAT', 3);
162 162
 
163
-define('QUEST_STATUS_EXCEPT_COMPLETE' , -2);
164
-define('QUEST_STATUS_ALL' , -1);
165
-define('QUEST_STATUS_NOT_STARTED' , 0);
166
-define('QUEST_STATUS_STARTED'     , 1);
167
-define('QUEST_STATUS_COMPLETE'    , 2);
163
+define('QUEST_STATUS_EXCEPT_COMPLETE', -2);
164
+define('QUEST_STATUS_ALL', -1);
165
+define('QUEST_STATUS_NOT_STARTED', 0);
166
+define('QUEST_STATUS_STARTED', 1);
167
+define('QUEST_STATUS_COMPLETE', 2);
168 168
 
169 169
 define('TYPE_EMPTY', '');
170 170
 define('TYPE_INTEGER', 'integer');
@@ -177,68 +177,68 @@  discard block
 block discarded – undo
177 177
 
178 178
 // *** Combat-related constants
179 179
 // *** Mission Type constants starts with MT_
180
-define('MT_NONE'     ,  0);
181
-define('MT_ATTACK'   ,  1);
182
-define('MT_AKS'      ,  2);
183
-define('MT_TRANSPORT',  3);
184
-define('MT_RELOCATE' ,  4);
185
-define('MT_HOLD'     ,  5);
186
-define('MT_SPY'      ,  6);
187
-define('MT_COLONIZE' ,  7);
188
-define('MT_RECYCLE'  ,  8);
189
-define('MT_DESTROY'  ,  9);
190
-define('MT_MISSILE'  , 10);
191
-define('MT_EXPLORE'  , 15);
180
+define('MT_NONE', 0);
181
+define('MT_ATTACK', 1);
182
+define('MT_AKS', 2);
183
+define('MT_TRANSPORT', 3);
184
+define('MT_RELOCATE', 4);
185
+define('MT_HOLD', 5);
186
+define('MT_SPY', 6);
187
+define('MT_COLONIZE', 7);
188
+define('MT_RECYCLE', 8);
189
+define('MT_DESTROY', 9);
190
+define('MT_MISSILE', 10);
191
+define('MT_EXPLORE', 15);
192 192
 
193 193
 // *** Planet Target constants starts with PT_
194 194
 define('PT_NONE', 0);
195 195
 define('PT_ALL', 0);
196 196
 define('PT_PLANET', 1);
197 197
 define('PT_DEBRIS', 2);
198
-define('PT_MOON'  , 3);
198
+define('PT_MOON', 3);
199 199
 
200 200
 // *** Unit locations - shows db table where unit belong
201 201
 // Also cache indexes
202 202
 define('LOC_AUTODETECT', -2);
203
-define('LOC_NONE',    -1); // Deprecated
203
+define('LOC_NONE', -1); // Deprecated
204 204
 define('LOC_UNIVERSE', 0);
205
-define('LOC_PLANET',   1);
206
-define('LOC_DEBRIS',   2); // Translates to `planets` table planet_type = 1, `debris_*` fields
207
-define('LOC_MOON',     3); // Translates to `planets` table planet_type = 3
208
-define('LOC_USER',     4);
209
-define('LOC_FLEET',    5);
210
-define('LOC_ALLY',     6);
211
-define('LOC_SERVER',   7); // Located on server
205
+define('LOC_PLANET', 1);
206
+define('LOC_DEBRIS', 2); // Translates to `planets` table planet_type = 1, `debris_*` fields
207
+define('LOC_MOON', 3); // Translates to `planets` table planet_type = 3
208
+define('LOC_USER', 4);
209
+define('LOC_FLEET', 5);
210
+define('LOC_ALLY', 6);
211
+define('LOC_SERVER', 7); // Located on server
212 212
 
213 213
 // ТОЛЬКО ВНУТРЕНЕЕ!!!
214
-define('LOC_UNIT',    'LOC_UNIT');
215
-define('LOC_QUE',     'LOC_QUE');
216
-define('LOC_LOCATION','LOC_LOCATION');
217
-define('LOC_LOCKS','LOC_LOCKS');
214
+define('LOC_UNIT', 'LOC_UNIT');
215
+define('LOC_QUE', 'LOC_QUE');
216
+define('LOC_LOCATION', 'LOC_LOCATION');
217
+define('LOC_LOCKS', 'LOC_LOCKS');
218 218
 
219 219
 // *** Caching masks
220
-define('CACHE_NOTHING'    ,  0);
221
-define('CACHE_FLEET'      ,  1);
222
-define('CACHE_PLANET'     ,  2);
223
-define('CACHE_USER'       ,  4);
224
-define('CACHE_SOURCE'     ,  8);
220
+define('CACHE_NOTHING', 0);
221
+define('CACHE_FLEET', 1);
222
+define('CACHE_PLANET', 2);
223
+define('CACHE_USER', 4);
224
+define('CACHE_SOURCE', 8);
225 225
 define('CACHE_DESTINATION', 16);
226
-define('CACHE_EVENT'      , 32);
226
+define('CACHE_EVENT', 32);
227 227
 
228
-define('CACHE_USER_SRC'  , CACHE_USER | CACHE_SOURCE);
229
-define('CACHE_USER_DST'  , CACHE_USER | CACHE_DESTINATION);
228
+define('CACHE_USER_SRC', CACHE_USER | CACHE_SOURCE);
229
+define('CACHE_USER_DST', CACHE_USER | CACHE_DESTINATION);
230 230
 define('CACHE_PLANET_SRC', CACHE_PLANET | CACHE_SOURCE);
231 231
 define('CACHE_PLANET_DST', CACHE_PLANET | CACHE_DESTINATION);
232
-define('CACHE_COMBAT'    , CACHE_FLEET | CACHE_PLANET | CACHE_USER | CACHE_SOURCE | CACHE_DESTINATION);
232
+define('CACHE_COMBAT', CACHE_FLEET | CACHE_PLANET | CACHE_USER | CACHE_SOURCE | CACHE_DESTINATION);
233 233
 
234
-define('CACHE_ALL'       , CACHE_FLEET | CACHE_PLANET | CACHE_USER | CACHE_SOURCE | CACHE_DESTINATION | CACHE_EVENT);
234
+define('CACHE_ALL', CACHE_FLEET | CACHE_PLANET | CACHE_USER | CACHE_SOURCE | CACHE_DESTINATION | CACHE_EVENT);
235 235
 
236
-define('CACHE_NONE'      , CACHE_NOTHING); // Alias for me
236
+define('CACHE_NONE', CACHE_NOTHING); // Alias for me
237 237
 
238 238
 // *** Event types
239 239
 define('EVENT_FLEET_NONE', 0);
240 240
 define('EVENT_FLEET_ARRIVE', 1);
241
-define('EVENT_FLEET_STAY'  , 2);
241
+define('EVENT_FLEET_STAY', 2);
242 242
 define('EVENT_FLEET_RETURN', 3);
243 243
 
244 244
 // *** Constants for changing DM
@@ -296,11 +296,11 @@  discard block
 block discarded – undo
296 296
 
297 297
 
298 298
 // Operation error status HARDCODE!
299
-define('ERR_NONE'               , 0); // No error
300
-define('ERR_WARNING'            , 1); // There is warning - something altering normal operation process
301
-define('ERR_ERROR'              , 2); // There is error - something permits operation from process
302
-define('ERR_HACK'               , 4); // Operation is qualified as hack attempt
303
-define('ERR_NOTICE'             , 8); // There is notice - nothing really critical but operator should know
299
+define('ERR_NONE', 0); // No error
300
+define('ERR_WARNING', 1); // There is warning - something altering normal operation process
301
+define('ERR_ERROR', 2); // There is error - something permits operation from process
302
+define('ERR_HACK', 4); // Operation is qualified as hack attempt
303
+define('ERR_NOTICE', 8); // There is notice - nothing really critical but operator should know
304 304
 // New GLOBAL operation results
305 305
 //define('RESULT_DEFAULT' , 0); // Default result - all went OK or result really doesn't matter
306 306
 //define('RESULT_WARNING' , 1);
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
 define('SN_PAYMENT_REQUEST_OK', 0);
321 321
 define('SN_PAYMENT_REQUEST_ERROR_UNIT_AMOUNT', 1);
322 322
 define('SN_PAYMENT_REQUEST_ERROR_PAYLINK_UNSUPPORTED', 2);
323
-define('SN_PAYMENT_REQUEST_IP_WRONG', 3);  // Неправильный IP входящей системы - обычно хак
323
+define('SN_PAYMENT_REQUEST_IP_WRONG', 3); // Неправильный IP входящей системы - обычно хак
324 324
 define('SN_PAYMENT_REQUEST_COMMAND_UNSUPPORTED', 4); // Неподдерживаемая команда - обычно хак
325 325
 define('SN_PAYMENT_REQUEST_SIGNATURE_INVALID', 5); // Неправильная подпись или не сошлась контрольная сумма - обычно хак
326 326
 define('SN_MODULE_DISABLED', 6); // Модуль отключен // УНИВЕРСАЛЬНЫЙ ОТВЕТ!
@@ -596,16 +596,16 @@  discard block
 block discarded – undo
596 596
 //define('F_DEVICE_ID',     'F_DEVICE_ID');
597 597
 //define('F_DEVICE_CYPHER', 'F_DEVICE_CYPHER');
598 598
 
599
-define('F_PROVIDER_ID',   'F_PROVIDER_ID');
599
+define('F_PROVIDER_ID', 'F_PROVIDER_ID');
600 600
 // define('F_PROVIDER_LIST', 'F_PROVIDER_LIST');
601 601
 
602 602
 define('F_IMPERSONATE_STATUS', 'F_IMPERSONATE_STATUS');
603 603
 define('F_IMPERSONATE_OPERATOR', 'F_IMPERSONATE_OPERATOR');
604 604
 
605
-define('F_LOGIN_STATUS',  'F_LOGIN_STATUS');
605
+define('F_LOGIN_STATUS', 'F_LOGIN_STATUS');
606 606
 define('F_LOGIN_MESSAGE', 'F_LOGIN_MESSAGE');
607 607
 
608
-define('F_PLAYER_REGISTER_STATUS',  'F_PLAYER_REGISTER_STATUS');
608
+define('F_PLAYER_REGISTER_STATUS', 'F_PLAYER_REGISTER_STATUS');
609 609
 define('F_PLAYER_REGISTER_MESSAGE', 'F_PLAYER_REGISTER_MESSAGE');
610 610
 
611 611
 define('F_USER_ID', 'F_USER_ID');
@@ -649,78 +649,78 @@  discard block
 block discarded – undo
649 649
 
650 650
 
651 651
 // Option groups
652
-define('OPT_ALL',      0);
653
-define('OPT_MESSAGE',  1);
652
+define('OPT_ALL', 0);
653
+define('OPT_MESSAGE', 1);
654 654
 define('OPT_UNIVERSE', 2);
655 655
 define('OPT_INTERFACE', 3);
656 656
 
657 657
 // Message classes
658
-define('MSG_TYPE_OUTBOX'   ,  -1);
659
-define('MSG_TYPE_SPY'      ,   0);
660
-define('MSG_TYPE_PLAYER'   ,   1);
661
-define('MSG_TYPE_ALLIANCE' ,   2);
662
-define('MSG_TYPE_COMBAT'   ,   3);
663
-define('MSG_TYPE_RECYCLE'  ,   4);
664
-define('MSG_TYPE_TRANSPORT',   5);
665
-define('MSG_TYPE_ADMIN'    ,   6);
666
-define('MSG_TYPE_EXPLORE'  ,  15);
667
-define('MSG_TYPE_QUE'      ,  99);
668
-define('MSG_TYPE_NEW'      , 100);
658
+define('MSG_TYPE_OUTBOX', -1);
659
+define('MSG_TYPE_SPY', 0);
660
+define('MSG_TYPE_PLAYER', 1);
661
+define('MSG_TYPE_ALLIANCE', 2);
662
+define('MSG_TYPE_COMBAT', 3);
663
+define('MSG_TYPE_RECYCLE', 4);
664
+define('MSG_TYPE_TRANSPORT', 5);
665
+define('MSG_TYPE_ADMIN', 6);
666
+define('MSG_TYPE_EXPLORE', 15);
667
+define('MSG_TYPE_QUE', 99);
668
+define('MSG_TYPE_NEW', 100);
669 669
 
670 670
 // Attack verification statuses
671
-define('ATTACK_ALLOWED'           ,  0);
672
-define('ATTACK_NO_TARGET'         ,  1);
673
-define('ATTACK_OWN'               ,  2);
674
-define('ATTACK_WRONG_MISSION'     ,  3);
675
-define('ATTACK_NO_ALLY_DEPOSIT'   ,  4);
676
-define('ATTACK_NO_DEBRIS'         ,  5);
677
-define('ATTACK_VACATION'          ,  6);
678
-define('ATTACK_SAME_IP'           ,  7);
679
-define('ATTACK_BUFFING'           ,  8);
680
-define('ATTACK_ADMIN'             ,  9);
681
-define('ATTACK_NOOB'              , 10);
682
-define('ATTACK_OWN_VACATION'      , 11);
683
-define('ATTACK_NO_SILO'           , 12);
684
-define('ATTACK_NO_MISSILE'        , 13);
685
-define('ATTACK_NO_FLEET'          , 14);
686
-define('ATTACK_NO_SLOTS'          , 15);
687
-define('ATTACK_NO_SHIPS'          , 16);
688
-define('ATTACK_NO_RECYCLERS'      , 17);
689
-define('ATTACK_NO_SPIES'          , 18);
690
-define('ATTACK_NO_COLONIZER'      , 19);
691
-define('ATTACK_MISSILE_TOO_FAR'   , 20);
692
-define('ATTACK_WRONG_STRUCTURE'   , 21);
693
-define('ATTACK_NO_FUEL'           , 22);
694
-define('ATTACK_NO_RESOURCES'      , 23);
695
-define('ATTACK_NO_ACS'            , 24);
696
-define('ATTACK_ACS_MISSTARGET'    , 25);
697
-define('ATTACK_WRONG_SPEED'       , 26);
698
-define('ATTACK_ACS_TOO_LATE'      , 27);
699
-define('ATTACK_BASHING'           , 28);
700
-define('ATTACK_BASHING_WAR_DELAY' , 29);
701
-define('ATTACK_ACS_WRONG_TARGET'  , 30);
702
-define('ATTACK_SAME'              , 31);
671
+define('ATTACK_ALLOWED', 0);
672
+define('ATTACK_NO_TARGET', 1);
673
+define('ATTACK_OWN', 2);
674
+define('ATTACK_WRONG_MISSION', 3);
675
+define('ATTACK_NO_ALLY_DEPOSIT', 4);
676
+define('ATTACK_NO_DEBRIS', 5);
677
+define('ATTACK_VACATION', 6);
678
+define('ATTACK_SAME_IP', 7);
679
+define('ATTACK_BUFFING', 8);
680
+define('ATTACK_ADMIN', 9);
681
+define('ATTACK_NOOB', 10);
682
+define('ATTACK_OWN_VACATION', 11);
683
+define('ATTACK_NO_SILO', 12);
684
+define('ATTACK_NO_MISSILE', 13);
685
+define('ATTACK_NO_FLEET', 14);
686
+define('ATTACK_NO_SLOTS', 15);
687
+define('ATTACK_NO_SHIPS', 16);
688
+define('ATTACK_NO_RECYCLERS', 17);
689
+define('ATTACK_NO_SPIES', 18);
690
+define('ATTACK_NO_COLONIZER', 19);
691
+define('ATTACK_MISSILE_TOO_FAR', 20);
692
+define('ATTACK_WRONG_STRUCTURE', 21);
693
+define('ATTACK_NO_FUEL', 22);
694
+define('ATTACK_NO_RESOURCES', 23);
695
+define('ATTACK_NO_ACS', 24);
696
+define('ATTACK_ACS_MISSTARGET', 25);
697
+define('ATTACK_WRONG_SPEED', 26);
698
+define('ATTACK_ACS_TOO_LATE', 27);
699
+define('ATTACK_BASHING', 28);
700
+define('ATTACK_BASHING_WAR_DELAY', 29);
701
+define('ATTACK_ACS_WRONG_TARGET', 30);
702
+define('ATTACK_SAME', 31);
703 703
 define('ATTACK_RESOURCE_FORBIDDEN', 32);
704
-define('ATTACK_TRANSPORT_EMPTY'   , 33);
705
-define('ATTACK_SPIES_LONLY'       , 34);
706
-define('ATTACK_TOO_FAR'           , 35);
707
-define('ATTACK_OVERLOADED'        , 36);
708
-define('ATTACK_MISSION_ABSENT'    , 37);
709
-define('ATTACK_WRONG_UNIT'        , 38);
710
-define('ATTACK_ZERO_SPEED'        , 39);
711
-define('ATTACK_SHIP_COUNT_WRONG'  , 40);
704
+define('ATTACK_TRANSPORT_EMPTY', 33);
705
+define('ATTACK_SPIES_LONLY', 34);
706
+define('ATTACK_TOO_FAR', 35);
707
+define('ATTACK_OVERLOADED', 36);
708
+define('ATTACK_MISSION_ABSENT', 37);
709
+define('ATTACK_WRONG_UNIT', 38);
710
+define('ATTACK_ZERO_SPEED', 39);
711
+define('ATTACK_SHIP_COUNT_WRONG', 40);
712 712
 define('ATTACK_RESOURCE_COUNT_WRONG', 41);
713 713
 define('ATTACK_MORATORIUM', 42);
714 714
 define('ATTACK_CHILD_PROTECTION', 43);
715 715
 
716 716
 
717 717
 // *** Races - Homeworlds
718
-define('RACE_NONE'    , 0);
719
-define('RACE_EARTH'   , 1);
720
-define('RACE_MOON'    , 2);
721
-define('RACE_MERCURY' , 3);
722
-define('RACE_VENUS'   , 4);
723
-define('RACE_MARS'    , 5);
718
+define('RACE_NONE', 0);
719
+define('RACE_EARTH', 1);
720
+define('RACE_MOON', 2);
721
+define('RACE_MERCURY', 3);
722
+define('RACE_VENUS', 4);
723
+define('RACE_MARS', 5);
724 724
 define('RACE_ASTEROID', 6);
725 725
 // define('MARKET_INFO'         , 7);
726 726
 
@@ -728,115 +728,115 @@  discard block
 block discarded – undo
728 728
 
729 729
 // *** Market variables
730 730
 // === Market blocks
731
-define('MARKET_ENTRY'        , 0);
732
-define('MARKET_RESOURCES'    , 1);
733
-define('MARKET_SCRAPPER'     , 2);
734
-define('MARKET_STOCKMAN'     , 3);
735
-define('MARKET_EXCHANGE'     , 4);
736
-define('MARKET_BANKER'       , 5);
737
-define('MARKET_PAWNSHOP'     , 6);
738
-define('MARKET_INFO'         , 7);
731
+define('MARKET_ENTRY', 0);
732
+define('MARKET_RESOURCES', 1);
733
+define('MARKET_SCRAPPER', 2);
734
+define('MARKET_STOCKMAN', 3);
735
+define('MARKET_EXCHANGE', 4);
736
+define('MARKET_BANKER', 5);
737
+define('MARKET_PAWNSHOP', 6);
738
+define('MARKET_INFO', 7);
739 739
 
740 740
 // === Market error statuses
741
-define('MARKET_NOTHING'              ,  0);
742
-define('MARKET_DEAL'                 ,  1);
743
-define('MARKET_DEAL_TRADE'           ,  2);
744
-define('MARKET_NO_DM'                ,  3);
745
-define('MARKET_NO_RESOURCES'         ,  4);
746
-define('MARKET_ZERO_DEAL'            ,  5);
747
-define('MARKET_NO_SHIPS'             ,  6);
748
-define('MARKET_NOT_A_SHIP'           ,  7);
749
-define('MARKET_NO_STOCK'             ,  8);
750
-define('MARKET_ZERO_RES_STOCK'       ,  9);
751
-define('MARKET_NEGATIVE_SHIPS'       , 10);
752
-
753
-define('MARKET_INFO_PLAYER'          , 12);
754
-define('MARKET_INFO_WRONG'           , 11);
741
+define('MARKET_NOTHING', 0);
742
+define('MARKET_DEAL', 1);
743
+define('MARKET_DEAL_TRADE', 2);
744
+define('MARKET_NO_DM', 3);
745
+define('MARKET_NO_RESOURCES', 4);
746
+define('MARKET_ZERO_DEAL', 5);
747
+define('MARKET_NO_SHIPS', 6);
748
+define('MARKET_NOT_A_SHIP', 7);
749
+define('MARKET_NO_STOCK', 8);
750
+define('MARKET_ZERO_RES_STOCK', 9);
751
+define('MARKET_NEGATIVE_SHIPS', 10);
752
+
753
+define('MARKET_INFO_PLAYER', 12);
754
+define('MARKET_INFO_WRONG', 11);
755 755
 define('MARKET_INFO_PLAYER_NOT_FOUND', 13);
756
-define('MARKET_INFO_PLAYER_WRONG'    , 14);
757
-define('MARKET_INFO_PLAYER_SAME'     , 15);
756
+define('MARKET_INFO_PLAYER_WRONG', 14);
757
+define('MARKET_INFO_PLAYER_SAME', 15);
758 758
 
759 759
 
760 760
 
761 761
 
762 762
 // *** Mercenary/talent bonus types
763
-define('BONUS_NONE'    ,            0);  // No bonus
764
-define('BONUS_PERCENT' ,            1);  // Percent on base value
765
-define('BONUS_ADD'     ,            2);  // Add
766
-define('BONUS_ABILITY' ,            3);  // Some ability
767
-define('BONUS_MULTIPLY',            4);  // Multiply by value
763
+define('BONUS_NONE', 0); // No bonus
764
+define('BONUS_PERCENT', 1); // Percent on base value
765
+define('BONUS_ADD', 2); // Add
766
+define('BONUS_ABILITY', 3); // Some ability
767
+define('BONUS_MULTIPLY', 4); // Multiply by value
768 768
 //define('BONUS_PERCENT_CUMULATIVE' , 5);  // Cumulative percent on base value
769 769
 //define('BONUS_PERCENT_DEGRADED' ,   6);  // Bonus amount degraded with increase as pow(bonus, level) (?)
770 770
 //define('BONUS_SPEED',               7);  // Speed bonus
771 771
 
772 772
 // *** Action constant (build should be replaced with ACTION)
773
-define('BUILD_CREATE' ,  1);
773
+define('BUILD_CREATE', 1);
774 774
 define('BUILD_DESTROY', -1);
775 775
 define('BUILD_AUTOCONVERT', 2);
776 776
 
777
-define('ACTION_SELL'       , -1);
778
-define('ACTION_NOTHING'    ,  0);
779
-define('ACTION_BUY'        ,  1);
780
-define('ACTION_USE'        ,  2);
781
-define('ACTION_DELETE'     ,  3);
777
+define('ACTION_SELL', -1);
778
+define('ACTION_NOTHING', 0);
779
+define('ACTION_BUY', 1);
780
+define('ACTION_USE', 2);
781
+define('ACTION_DELETE', 3);
782 782
 
783 783
 // *** Check unit availability codes
784
-define('BUILD_ALLOWED'         , 0); // HARDCODED! DO NOT CHANGE!
784
+define('BUILD_ALLOWED', 0); // HARDCODED! DO NOT CHANGE!
785 785
 define('BUILD_REQUIRE_NOT_MEET', 1);
786
-define('BUILD_AMOUNT_WRONG'    , 2);
787
-define('BUILD_QUE_WRONG'       , 3);
788
-define('BUILD_QUE_UNIT_WRONG'  , 4);
789
-define('BUILD_INDESTRUCTABLE'  , 5);
790
-define('BUILD_NO_RESOURCES'    , 6);
791
-define('BUILD_NO_UNITS'        , 7);
792
-define('BUILD_UNIT_BUSY'       , 8);
793
-define('BUILD_QUE_FULL'        , 9);
794
-define('BUILD_SILO_FULL'       ,10);
795
-define('BUILD_MAX_REACHED'     ,11);
796
-define('BUILD_SECTORS_NONE'    ,12);
786
+define('BUILD_AMOUNT_WRONG', 2);
787
+define('BUILD_QUE_WRONG', 3);
788
+define('BUILD_QUE_UNIT_WRONG', 4);
789
+define('BUILD_INDESTRUCTABLE', 5);
790
+define('BUILD_NO_RESOURCES', 6);
791
+define('BUILD_NO_UNITS', 7);
792
+define('BUILD_UNIT_BUSY', 8);
793
+define('BUILD_QUE_FULL', 9);
794
+define('BUILD_SILO_FULL', 10);
795
+define('BUILD_MAX_REACHED', 11);
796
+define('BUILD_SECTORS_NONE', 12);
797 797
 define('BUILD_AUTOCONVERT_AVAILABLE', 13);
798 798
 
799 799
 
800 800
 // *** Que types
801 801
 define('QUE_STRUCTURES', 1);
802
-define('QUE_HANGAR'    , 4);
803
-define('QUE_RESEARCH'  , 7);
804
-define('QUE_MERCENARY' , 600); // UNIT_MERCENARIES
802
+define('QUE_HANGAR', 4);
803
+define('QUE_RESEARCH', 7);
804
+define('QUE_MERCENARY', 600); // UNIT_MERCENARIES
805 805
 // *** Subque types
806
-define('SUBQUE_PLANET'  , 1);
807
-define('SUBQUE_MOON'    , 3);
808
-define('SUBQUE_FLEET'   , 4);
809
-define('SUBQUE_DEFENSE' , 6);
806
+define('SUBQUE_PLANET', 1);
807
+define('SUBQUE_MOON', 3);
808
+define('SUBQUE_FLEET', 4);
809
+define('SUBQUE_DEFENSE', 6);
810 810
 define('SUBQUE_RESEARCH', 7);
811 811
 
812 812
 // *** Que items
813
-define('QI_UNIT_ID'   , 0);
814
-define('QI_AMOUNT'    , 1);
815
-define('QI_TIME'      , 2);
816
-define('QI_MODE'      , 3);
817
-define('QI_QUE_ID'    , 4);
818
-define('QI_QUE_TYPE'  , 4);
819
-define('QI_PLANET_ID' , 5);
813
+define('QI_UNIT_ID', 0);
814
+define('QI_AMOUNT', 1);
815
+define('QI_TIME', 2);
816
+define('QI_MODE', 3);
817
+define('QI_QUE_ID', 4);
818
+define('QI_QUE_TYPE', 4);
819
+define('QI_PLANET_ID', 5);
820 820
 
821 821
 
822 822
 // *** Units
823 823
 
824 824
 // *** Sort options
825
-define('SORT_ASCENDING' , 0);
825
+define('SORT_ASCENDING', 0);
826 826
 define('SORT_DESCENDING', 1);
827 827
 
828
-define('SORT_ID'             , 0);
829
-define('SORT_LOCATION'       , 1);
830
-define('SORT_NAME'           , 2);
831
-define('SORT_SIZE'           , 3);
832
-define('SORT_EMAIL'          , 4);
833
-define('SORT_IP'             , 5);
828
+define('SORT_ID', 0);
829
+define('SORT_LOCATION', 1);
830
+define('SORT_NAME', 2);
831
+define('SORT_SIZE', 3);
832
+define('SORT_EMAIL', 4);
833
+define('SORT_IP', 5);
834 834
 define('SORT_TIME_REGISTERED', 6);
835 835
 define('SORT_TIME_LAST_VISIT', 7);
836
-define('SORT_TIME_BAN_UNTIL' , 8);
837
-define('SORT_REFERRAL_COUNT' , 9);
838
-define('SORT_REFERRAL_DM'    , 10);
839
-define('SORT_VACATION'       , 11);
836
+define('SORT_TIME_BAN_UNTIL', 8);
837
+define('SORT_REFERRAL_COUNT', 9);
838
+define('SORT_REFERRAL_DM', 10);
839
+define('SORT_VACATION', 11);
840 840
 
841 841
 
842 842
 define('HULL_SIZE_TINY', 1);
@@ -989,10 +989,10 @@  discard block
 block discarded – undo
989 989
 
990 990
 // === Artifacts
991 991
 define('UNIT_ARTIFACTS', 1000);
992
-define('ART_LHC', 1001);      // Additional moon chance
993
-define('ART_RCD_SMALL', 1002);   // Rapid Colony Deployment - Set of buildings up to 10th level - 10/14/ 3/0 -   405 DM
994
-define('ART_RCD_MEDIUM', 1003);  // Rapid Colony Deployment - Set of buildings up to 15th level - 15/20/ 8/0 -  4704 DM
995
-define('ART_RCD_LARGE', 1004);   // Rapid Colony Deployment - Set of buildings up to 20th level - 20/25/10/1 - 39790 DM
992
+define('ART_LHC', 1001); // Additional moon chance
993
+define('ART_RCD_SMALL', 1002); // Rapid Colony Deployment - Set of buildings up to 10th level - 10/14/ 3/0 -   405 DM
994
+define('ART_RCD_MEDIUM', 1003); // Rapid Colony Deployment - Set of buildings up to 15th level - 15/20/ 8/0 -  4704 DM
995
+define('ART_RCD_LARGE', 1004); // Rapid Colony Deployment - Set of buildings up to 20th level - 20/25/10/1 - 39790 DM
996 996
 define('ART_HEURISTIC_CHIP', 1005); // Speed up research
997 997
 define('ART_NANO_BUILDER', 1006); // Speed up building
998 998
 define('ART_NANO_CONSTRUCTOR', 1007); // RESERVED Speed up hangar constructions
@@ -1066,21 +1066,21 @@  discard block
 block discarded – undo
1066 1066
 define('UNIT_AWARD_MEDAL_BLITZ_R0_PLACE1', 2201); // Блиц-сервер, участник 0-го раунда, 1-е место
1067 1067
 define('UNIT_AWARD_MEDAL_BLITZ_R0_PLACE2', 2202); // Блиц-сервер, участник 0-го раунда, 2-е место
1068 1068
 define('UNIT_AWARD_MEDAL_BLITZ_R0_PLACE3', 2203); // Блиц-сервер, участник 0-го раунда, 3-е место
1069
-define('UNIT_AWARD_MEDAL_2016_WOMEN_DAY_BEST', 2204);  // Медаль Лучшему Кавалеру за максимум потраченной ММ/максимум одаренных женщин Женщине от Мужчины во время ивента 8 марта 2016 года
1070
-define('UNIT_AWARD_MEDAL_2017_WOMEN_DAY_BEST', 2205);  // Медаль Лучшему Кавалеру за максимум потраченной ММ/максимум одаренных женщин Женщине от Мужчины во время ивента 8 марта 2017 года
1071
-define('UNIT_AWARD_MEDAL_2017_WOMEN_DAY_QUEEN', 2206);  // Медаль Королевы Весны за максимум полученной ММ/максимум полученных подарков от Мужчины во время ивента 8 марта 2017 года
1069
+define('UNIT_AWARD_MEDAL_2016_WOMEN_DAY_BEST', 2204); // Медаль Лучшему Кавалеру за максимум потраченной ММ/максимум одаренных женщин Женщине от Мужчины во время ивента 8 марта 2016 года
1070
+define('UNIT_AWARD_MEDAL_2017_WOMEN_DAY_BEST', 2205); // Медаль Лучшему Кавалеру за максимум потраченной ММ/максимум одаренных женщин Женщине от Мужчины во время ивента 8 марта 2017 года
1071
+define('UNIT_AWARD_MEDAL_2017_WOMEN_DAY_QUEEN', 2206); // Медаль Королевы Весны за максимум полученной ММ/максимум полученных подарков от Мужчины во время ивента 8 марта 2017 года
1072 1072
 
1073 1073
 define('UNIT_AWARD_MEMORY', 2300); // Памятные знаки за существование и участие - например "4 года в игре". "Был онлайн в новогоднюю ночь 2013". итд
1074
-define('UNIT_AWARD_MEMORY_IMMORTAL', 2301);  // Бессмертный
1075
-define('UNIT_AWARD_MEMORY_2015_WOMEN_DAY', 2302);  // Значек за подарок Женщине от Мужчины во время ивента 8 марта 2015 года
1074
+define('UNIT_AWARD_MEMORY_IMMORTAL', 2301); // Бессмертный
1075
+define('UNIT_AWARD_MEMORY_2015_WOMEN_DAY', 2302); // Значек за подарок Женщине от Мужчины во время ивента 8 марта 2015 года
1076 1076
 define('UNIT_AWARD_MEMORY_BLITZ_R0', 2303); // Блиц-сервер, участник 0-го раунда
1077 1077
 define('UNIT_AWARD_MEMORY_SUPER_BORN_2015_SIMPLE', 2304); // День Рождения СН
1078 1078
 define('UNIT_AWARD_MEMORY_SUPER_BORN_2015_BRONZE', 2305); // День Рождения СН
1079 1079
 define('UNIT_AWARD_MEMORY_SUPER_BORN_2015_SILVER', 2306); // День Рождения СН
1080 1080
 define('UNIT_AWARD_MEMORY_SUPER_BORN_2015_GOLD', 2307); // День Рождения СН
1081 1081
 define('UNIT_AWARD_MEMORY_SUPER_BORN_2015_PLATINUM', 2308); // День Рождения СН
1082
-define('UNIT_AWARD_MEMORY_2016_WOMEN_DAY', 2309);  // Значек за подарок Женщине от Мужчины во время ивента 8 марта 2016 года
1083
-define('UNIT_AWARD_MEMORY_2017_WOMEN_DAY', 2310);  // Значек за подарок Женщине от Мужчины во время ивента 8 марта 2017 года
1082
+define('UNIT_AWARD_MEMORY_2016_WOMEN_DAY', 2309); // Значек за подарок Женщине от Мужчины во время ивента 8 марта 2016 года
1083
+define('UNIT_AWARD_MEMORY_2017_WOMEN_DAY', 2310); // Значек за подарок Женщине от Мужчины во время ивента 8 марта 2017 года
1084 1084
 define('UNIT_AWARD_MEMORY_SUPER_BORN_2017_SIMPLE', 2311); // День Рождения СН - 2017
1085 1085
 define('UNIT_AWARD_MEMORY_SUPER_BORN_2017_BRONZE', 2312); // День Рождения СН - 2017
1086 1086
 define('UNIT_AWARD_MEMORY_SUPER_BORN_2017_SILVER', 2313); // День Рождения СН - 2017
@@ -1102,7 +1102,7 @@  discard block
 block discarded – undo
1102 1102
 define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_SIMPLE', 2326); // СуперНовый Год - 2018
1103 1103
 define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_BRONZE', 2327); // СуперНовый Год - 2018
1104 1104
 define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_SILVER', 2328); // СуперНовый Год - 2018
1105
-define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_GOLD',   2329); // СуперНовый Год - 2018
1105
+define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_GOLD', 2329); // СуперНовый Год - 2018
1106 1106
 define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_PLATINUM', 2330); // СуперНовый Год - 2018
1107 1107
 define('UNIT_AWARD_MEMORY_NEW_YEAR_2018_DIAMOND', 2331); // СуперНовый Год - 2018
1108 1108
 
@@ -1236,7 +1236,7 @@  discard block
 block discarded – undo
1236 1236
 define('UNIT_FLEET_PLANET_SPY', 'UNIT_FLEET_PLANET_SPY');
1237 1237
 
1238 1238
 
1239
-define('GROUP_PART',         800000);
1239
+define('GROUP_PART', 800000);
1240 1240
 // Зарезервировано для запчастей: 800.001 - 899.999
1241 1241
 // define('GROUP_PART_HULL',    801000); // Корпуса - 1000 штук
1242 1242
 // define('GROUP_PART_ARMOR',   802000); // Броня - 1000 штук
@@ -1564,35 +1564,35 @@  discard block
 block discarded – undo
1564 1564
 
1565 1565
 
1566 1566
 // define('NICK_ID',               -1);
1567
-define('NICK_HTML',              0);
1568
-
1569
-define('NICK_FIRST',             1);
1570
-define('NICK_RACE',           1000);
1571
-define('NICK_GENDER',         2000);
1572
-define('NICK_AWARD',          3000);
1573
-define('NICK_VACATION',       3500);
1574
-define('NICK_BIRTHDAY',       4000);
1575
-define('NICK_RANK',           4500);
1576
-define('NICK_RANK_NO_TEXT',   4750);
1577
-define('NICK_PREMIUM',        5000);
1578
-define('NICK_AUTH_LEVEL',     6000);
1579
-
1580
-define('NICK_HIGHLIGHT',      6300);
1581
-define('NICK_CLASS',          6450);
1582
-
1583
-define('NICK_NICK_CLASS',     6600);
1584
-define('NICK_NICK',           7000);
1567
+define('NICK_HTML', 0);
1568
+
1569
+define('NICK_FIRST', 1);
1570
+define('NICK_RACE', 1000);
1571
+define('NICK_GENDER', 2000);
1572
+define('NICK_AWARD', 3000);
1573
+define('NICK_VACATION', 3500);
1574
+define('NICK_BIRTHDAY', 4000);
1575
+define('NICK_RANK', 4500);
1576
+define('NICK_RANK_NO_TEXT', 4750);
1577
+define('NICK_PREMIUM', 5000);
1578
+define('NICK_AUTH_LEVEL', 6000);
1579
+
1580
+define('NICK_HIGHLIGHT', 6300);
1581
+define('NICK_CLASS', 6450);
1582
+
1583
+define('NICK_NICK_CLASS', 6600);
1584
+define('NICK_NICK', 7000);
1585 1585
 define('NICK_NICK_CLASS_END', 7300);
1586 1586
 
1587
-define('NICK_ALLY_CLASS',     7600);
1588
-define('NICK_ALLY',           8000);
1587
+define('NICK_ALLY_CLASS', 7600);
1588
+define('NICK_ALLY', 8000);
1589 1589
 define('NICK_ALLY_CLASS_END', 8300);
1590 1590
 
1591
-define('NICK_CLASS_END',      8450);
1592
-define('NICK_HIGHLIGHT_END',  8600);
1591
+define('NICK_CLASS_END', 8450);
1592
+define('NICK_HIGHLIGHT_END', 8600);
1593 1593
 
1594
-define('NICK_LAST',           9999);
1595
-define('NICK_SORT',          10000);
1594
+define('NICK_LAST', 9999);
1595
+define('NICK_SORT', 10000);
1596 1596
 
1597 1597
 // Настройки игрока
1598 1598
 define('PLAYER_OPTION_MENU_SORT', 1);
@@ -1694,8 +1694,8 @@  discard block
 block discarded – undo
1694 1694
 define('LOG_ONLIINE_AGGREGATE_PERIOD_MINUTE_10', 1);
1695 1695
 
1696 1696
 define('BLITZ_REGISTER_DISABLED', 0);
1697
-define('BLITZ_REGISTER_OPEN'    , 1);
1698
-define('BLITZ_REGISTER_CLOSED'  , 2);
1697
+define('BLITZ_REGISTER_OPEN', 1);
1698
+define('BLITZ_REGISTER_CLOSED', 2);
1699 1699
 define('BLITZ_REGISTER_SHOW_LOGIN', 3);
1700 1700
 define('BLITZ_REGISTER_DISCLOSURE_NAMES', 4);
1701 1701
 
Please login to merge, or discard this patch.
admin/userlist.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
 
86 86
   $template->assign_block_vars('user', array(
87 87
       'ID'              => $user_row['id'],
88
-      'NAME'            => $renderedNick = player_nick_render_to_html($user_row, ['player_rank' => true, 'vacancy' => true, 'birthday' => true, 'award' => true, NICK_RANK_NO_TEXT => true,]),
88
+      'NAME'            => $renderedNick = player_nick_render_to_html($user_row, ['player_rank' => true, 'vacancy' => true, 'birthday' => true, 'award' => true, NICK_RANK_NO_TEXT => true, ]),
89 89
       'NAME_HTML'       => htmlentities($user_row['username'], ENT_QUOTES, 'UTF-8'),
90 90
       'IP'              => $user_row['user_lastip'],
91 91
       'IP_MULTI'        => intval($multi_ip[$user_row['user_lastip']]),
Please login to merge, or discard this patch.
includes/vars.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -564,9 +564,9 @@  discard block
 block discarded – undo
564 564
           2 => 0.01,
565 565
         ),
566 566
         P_MISSION_EXPEDITION_OUTCOME_SECONDARY => [
567
-          [P_CHANCE => 90, P_MULTIPLIER => 0.01, P_MESSAGE_ID => 2,],
568
-          [P_CHANCE =>  9, P_MULTIPLIER => 0.02, P_MESSAGE_ID => 1,],
569
-          [P_CHANCE =>  1, P_MULTIPLIER => 0.10, P_MESSAGE_ID => 0,],
567
+          [P_CHANCE => 90, P_MULTIPLIER => 0.01, P_MESSAGE_ID => 2, ],
568
+          [P_CHANCE =>  9, P_MULTIPLIER => 0.02, P_MESSAGE_ID => 1, ],
569
+          [P_CHANCE =>  1, P_MULTIPLIER => 0.10, P_MESSAGE_ID => 0, ],
570 570
         ],
571 571
       ),
572 572
       FLT_EXPEDITION_OUTCOME_FOUND_RESOURCES => array(
@@ -578,9 +578,9 @@  discard block
 block discarded – undo
578 578
           2 => 0.025,
579 579
         ),
580 580
         P_MISSION_EXPEDITION_OUTCOME_SECONDARY => [
581
-          [P_CHANCE => 90, P_MULTIPLIER => 0.025, P_MESSAGE_ID => 2,],
582
-          [P_CHANCE =>  9, P_MULTIPLIER => 0.050, P_MESSAGE_ID => 1,],
583
-          [P_CHANCE =>  1, P_MULTIPLIER => 0.100, P_MESSAGE_ID => 0,],
581
+          [P_CHANCE => 90, P_MULTIPLIER => 0.025, P_MESSAGE_ID => 2, ],
582
+          [P_CHANCE =>  9, P_MULTIPLIER => 0.050, P_MESSAGE_ID => 1, ],
583
+          [P_CHANCE =>  1, P_MULTIPLIER => 0.100, P_MESSAGE_ID => 0, ],
584 584
         ],
585 585
       ),
586 586
       FLT_EXPEDITION_OUTCOME_FOUND_DM        => array(
@@ -1236,7 +1236,7 @@  discard block
 block discarded – undo
1236 1236
       UNIT_PLANS        => 'plans',
1237 1237
     ],
1238 1238
 
1239
-    GROUP_CAPITAL_BUILDING_BONUS_GROUPS => ['structures', 'defense','fleet',],
1239
+    GROUP_CAPITAL_BUILDING_BONUS_GROUPS => ['structures', 'defense', 'fleet', ],
1240 1240
 
1241 1241
   ),
1242 1242
 );
Please login to merge, or discard this patch.
includes/functions/eco_get_build_data.php 2 patches
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -13,13 +13,13 @@  discard block
 block discarded – undo
13 13
  */
14 14
 function eco_get_lab_max_effective_level(&$user, $lab_require)
15 15
 {
16
-  if(!$user['user_as_ally'] && !isset($user['laboratories_active']))
16
+  if (!$user['user_as_ally'] && !isset($user['laboratories_active']))
17 17
   {
18 18
     $user['laboratories_active'] = array();
19 19
     $query = DBStaticUnit::db_unit_list_laboratories($user['id']);
20
-    while($row = db_fetch($query))
20
+    while ($row = db_fetch($query))
21 21
     {
22
-      if(!eco_unit_busy($user, $row, UNIT_TECHNOLOGIES))
22
+      if (!eco_unit_busy($user, $row, UNIT_TECHNOLOGIES))
23 23
       {
24 24
         $row += array(
25 25
           STRUC_LABORATORY => $level_lab = mrc_get_level($user, $row, STRUC_LABORATORY),
@@ -33,9 +33,9 @@  discard block
 block discarded – undo
33 33
     uasort($user['laboratories_active'], 'eco_lab_sort_effectivness');
34 34
   }
35 35
 
36
-  if(!isset($user['research_effective_level'][$lab_require]))
36
+  if (!isset($user['research_effective_level'][$lab_require]))
37 37
   {
38
-    if($user['user_as_ally'])
38
+    if ($user['user_as_ally'])
39 39
     {
40 40
       $lab_level = doquery("SELECT ally_members AS effective_level FROM {{alliance}} WHERE id = {$user['user_as_ally']} LIMIT 1", true);
41 41
     }
@@ -44,13 +44,13 @@  discard block
 block discarded – undo
44 44
       $tech_intergalactic = mrc_get_level($user, false, TECH_RESEARCH) + 1;
45 45
       $lab_level['effective_level'] = 0;
46 46
 
47
-      foreach($user['laboratories_active'] as $data)
47
+      foreach ($user['laboratories_active'] as $data)
48 48
       {
49
-        if($tech_intergalactic <= 0)
49
+        if ($tech_intergalactic <= 0)
50 50
         {
51 51
           break;
52 52
         }
53
-        if($data[STRUC_LABORATORY] >= $lab_require)
53
+        if ($data[STRUC_LABORATORY] >= $lab_require)
54 54
         {
55 55
           $lab_level['effective_level'] += $data['laboratory_effective_level'];
56 56
           $tech_intergalactic--;
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
   $cost[P_OPTIONS][P_TIME_RAW] = 0;
91 91
   $only_dark_matter = 0;
92 92
   $cost_in_metal = 0;
93
-  foreach($unit_data[P_COST] as $resource_id => $resource_amount) {
94
-    if($resource_id === P_FACTOR || !($resource_cost = $resource_amount * $price_increase)) {
93
+  foreach ($unit_data[P_COST] as $resource_id => $resource_amount) {
94
+    if ($resource_id === P_FACTOR || !($resource_cost = $resource_amount * $price_increase)) {
95 95
       continue;
96 96
     }
97 97
 
@@ -102,12 +102,12 @@  discard block
 block discarded – undo
102 102
 
103 103
     $cost_in_metal += $cost[BUILD_CREATE][$resource_id] * $currentResourceExchange;
104 104
 
105
-    if(in_array($resource_id, $resources_loot)) {
105
+    if (in_array($resource_id, $resources_loot)) {
106 106
       $cost[P_OPTIONS][P_TIME_RAW] += $resource_cost * $currentResourceExchange / $rpg_exchange_deuterium;
107 107
       $resource_got = mrc_get_level($user, $planet, $resource_id);
108
-    } elseif($resource_id == RES_DARK_MATTER) {
108
+    } elseif ($resource_id == RES_DARK_MATTER) {
109 109
       $resource_got = mrc_get_level($user, null, $resource_id);
110
-    } elseif($resource_id == RES_ENERGY) {
110
+    } elseif ($resource_id == RES_ENERGY) {
111 111
       $resource_got = max(0, $planet['energy_max'] - $planet['energy_used']);
112 112
     } else {
113 113
       $resource_got = 0;
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
   }
120 120
 
121 121
   $resources_normalized = 0;
122
-  foreach($resources_loot as $resource_id) {
122
+  foreach ($resources_loot as $resource_id) {
123 123
     $resources_normalized += floor(mrc_get_level($user, $planet, $resource_id)) * $config->__get('rpg_exchange_' . pname_resource_name($resource_id));
124 124
   }
125 125
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
   $cost[P_OPTIONS][P_TIME_RAW] = $cost[P_OPTIONS][P_TIME_RAW] * 60 * 60 / get_game_speed() / 2500;
136 136
 
137 137
   // TODO - Вынести в отдельную процедуру расчёт стоимости
138
-  if($only_cost) {
138
+  if ($only_cost) {
139 139
     return $cost;
140 140
   }
141 141
 
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
   $cost['RESULT'][BUILD_DESTROY] = BUILD_INDESTRUCTABLE;
148 148
 
149 149
   $mercenary = 0;
150
-  if(in_array($unit_id, sn_get_groups('structures'))) {
150
+  if (in_array($unit_id, sn_get_groups('structures'))) {
151 151
     $cost[RES_TIME][BUILD_CREATE] *= pow(0.5, mrc_get_level($user, $planet, STRUC_FACTORY_NANO)) / (mrc_get_level($user, $planet, STRUC_FACTORY_ROBOT) + 1);
152 152
     $cost['RESULT'][BUILD_DESTROY] =
153 153
       mrc_get_level($user, $planet, $unit_id, false, true)
@@ -157,19 +157,19 @@  discard block
 block discarded – undo
157 157
           )
158 158
         : BUILD_NO_UNITS;
159 159
     $mercenary = MRC_ENGINEER;
160
-  } elseif(in_array($unit_id, sn_get_groups('tech'))) {
160
+  } elseif (in_array($unit_id, sn_get_groups('tech'))) {
161 161
     $lab_level = eco_get_lab_max_effective_level($user, intval($unit_data['require'][STRUC_LABORATORY]));
162 162
     $cost[RES_TIME][BUILD_CREATE] /= $lab_level;
163 163
     $mercenary = MRC_ACADEMIC;
164
-  } elseif(in_array($unit_id, sn_get_groups('defense'))) {
165
-    $cost[RES_TIME][BUILD_CREATE] *= pow(0.5, mrc_get_level($user, $planet, STRUC_FACTORY_NANO)) / (mrc_get_level($user, $planet, STRUC_FACTORY_HANGAR) + 1) ;
164
+  } elseif (in_array($unit_id, sn_get_groups('defense'))) {
165
+    $cost[RES_TIME][BUILD_CREATE] *= pow(0.5, mrc_get_level($user, $planet, STRUC_FACTORY_NANO)) / (mrc_get_level($user, $planet, STRUC_FACTORY_HANGAR) + 1);
166 166
     $mercenary = MRC_FORTIFIER;
167
-  } elseif(in_array($unit_id, sn_get_groups('fleet'))) {
167
+  } elseif (in_array($unit_id, sn_get_groups('fleet'))) {
168 168
     $cost[RES_TIME][BUILD_CREATE] *= pow(0.5, mrc_get_level($user, $planet, STRUC_FACTORY_NANO)) / (mrc_get_level($user, $planet, STRUC_FACTORY_HANGAR) + 1);
169 169
     $mercenary = MRC_ENGINEER;
170 170
   }
171 171
 
172
-  if(
172
+  if (
173 173
     // If planet is capital
174 174
     $user['id_planet'] == $planet['id']
175 175
     &&
@@ -180,11 +180,11 @@  discard block
 block discarded – undo
180 180
     $cost[RES_TIME][BUILD_CREATE] = $cost[RES_TIME][BUILD_CREATE] / classSupernova::$gc->config->planet_capital_building_rate;
181 181
   }
182 182
 
183
-  if($mercenary) {
183
+  if ($mercenary) {
184 184
     $cost[RES_TIME][BUILD_CREATE] = $cost[RES_TIME][BUILD_CREATE] / mrc_modify_value($user, $planet, $mercenary, 1);
185 185
   }
186 186
 
187
-  if(in_array($unit_id, sn_get_groups('governors')) || $only_dark_matter) {
187
+  if (in_array($unit_id, sn_get_groups('governors')) || $only_dark_matter) {
188 188
     $cost[RES_TIME][BUILD_CREATE] = $cost[RES_TIME][BUILD_DESTROY] = 0;
189 189
   } else {
190 190
     $cost[RES_TIME][BUILD_CREATE]  = $cost[RES_TIME][BUILD_CREATE] > 1 ? round($cost[RES_TIME][BUILD_CREATE]) : 1;
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
   return $cost;
195 195
 }
196 196
 
197
-function eco_can_build_unit($user, $planet, $unit_id){$result = null;return sn_function_call('eco_can_build_unit', array($user, $planet, $unit_id, &$result));}
197
+function eco_can_build_unit($user, $planet, $unit_id) {$result = null; return sn_function_call('eco_can_build_unit', array($user, $planet, $unit_id, &$result)); }
198 198
 function sn_eco_can_build_unit($user, $planet, $unit_id, &$result) {
199 199
   global $config;
200 200
 
@@ -202,11 +202,11 @@  discard block
 block discarded – undo
202 202
   $result = $result == BUILD_ALLOWED && eco_unit_busy($user, $planet, $unit_id) ? BUILD_UNIT_BUSY : $result;
203 203
 
204 204
   $unit_param = get_unit_param($unit_id);
205
-  if($unit_param[P_UNIT_TYPE] != UNIT_MERCENARIES || !$config->empire_mercenary_temporary) {
205
+  if ($unit_param[P_UNIT_TYPE] != UNIT_MERCENARIES || !$config->empire_mercenary_temporary) {
206 206
     $requirement = &$unit_param[P_REQUIRE];
207
-    if($result == BUILD_ALLOWED && $requirement) {
208
-      foreach($requirement as $require_id => $require_level) {
209
-        if(mrc_get_level($user, $planet, $require_id) < $require_level) {
207
+    if ($result == BUILD_ALLOWED && $requirement) {
208
+      foreach ($requirement as $require_id => $require_level) {
209
+        if (mrc_get_level($user, $planet, $require_id) < $require_level) {
210 210
           $result = BUILD_REQUIRE_NOT_MEET;
211 211
           break;
212 212
         }
@@ -223,12 +223,12 @@  discard block
 block discarded – undo
223 223
 
224 224
   $unit_list = is_array($unit_list) ? $unit_list : array($unit_list => $unit_list);
225 225
   $planet_que = explode(';', $planet_que);
226
-  foreach($planet_que as $planet_que_item)
226
+  foreach ($planet_que as $planet_que_item)
227 227
   {
228
-    if($planet_que_item)
228
+    if ($planet_que_item)
229 229
     {
230 230
       list($planet_que_item) = explode(',', $planet_que_item);
231
-      if(in_array($planet_que_item, $unit_list))
231
+      if (in_array($planet_que_item, $unit_list))
232 232
       {
233 233
         $eco_is_builds_in_que = true;
234 234
         break;
@@ -239,21 +239,21 @@  discard block
 block discarded – undo
239 239
   return $eco_is_builds_in_que;
240 240
 }
241 241
 
242
-function eco_unit_busy(&$user, &$planet, $unit_id){$result = null;return sn_function_call('eco_unit_busy', [&$user, &$planet, $unit_id, &$result]);}
242
+function eco_unit_busy(&$user, &$planet, $unit_id) {$result = null; return sn_function_call('eco_unit_busy', [&$user, &$planet, $unit_id, &$result]); }
243 243
 function sn_eco_unit_busy(&$user, &$planet, $unit_id, &$result)
244 244
 {
245 245
   global $config;
246 246
 
247 247
   $result = isset($result) ? $result : false;
248
-  if(!$result)
248
+  if (!$result)
249 249
   {
250
-    if(($unit_id == STRUC_LABORATORY || $unit_id == STRUC_LABORATORY_NANO) && !$config->BuildLabWhileRun)
250
+    if (($unit_id == STRUC_LABORATORY || $unit_id == STRUC_LABORATORY_NANO) && !$config->BuildLabWhileRun)
251 251
     {
252 252
       $global_que = que_get($user['id'], $planet['id'], QUE_RESEARCH, false);
253
-      if(is_array($global_que['ques'][QUE_RESEARCH][$user['id']]))
253
+      if (is_array($global_que['ques'][QUE_RESEARCH][$user['id']]))
254 254
       {
255 255
         $first_element = reset($global_que['ques'][QUE_RESEARCH][$user['id']]);
256
-        if(is_array($first_element))
256
+        if (is_array($first_element))
257 257
         {
258 258
           $result = true;
259 259
         }
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
       //  $result = true;
264 264
       //}
265 265
     }
266
-    elseif(($unit_id == UNIT_TECHNOLOGIES || in_array($unit_id, sn_get_groups('tech'))) && !$config->BuildLabWhileRun && $planet['que'])
266
+    elseif (($unit_id == UNIT_TECHNOLOGIES || in_array($unit_id, sn_get_groups('tech'))) && !$config->BuildLabWhileRun && $planet['que'])
267 267
     {
268 268
       $result = eco_is_builds_in_que($planet['que'], array(STRUC_LABORATORY, STRUC_LABORATORY_NANO));
269 269
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-function eco_lab_sort_effectivness($a, $b)
4
-{
3
+function eco_lab_sort_effectivness($a, $b) {
5 4
   return $a['laboratory_effective_level'] > $b['laboratory_effective_level'] ? -1 : ($a['laboratory_effective_level'] < $b['laboratory_effective_level'] ? 1 : 0);
6 5
 }
7 6
 
@@ -11,8 +10,7 @@  discard block
 block discarded – undo
11 10
  * 1.0 - copyright (c) 2010 by Gorlum for http://supernova.ws
12 11
  * @version 1.0
13 12
  */
14
-function eco_get_lab_max_effective_level(&$user, $lab_require)
15
-{
13
+function eco_get_lab_max_effective_level(&$user, $lab_require) {
16 14
   if(!$user['user_as_ally'] && !isset($user['laboratories_active']))
17 15
   {
18 16
     $user['laboratories_active'] = array();
@@ -38,8 +36,7 @@  discard block
 block discarded – undo
38 36
     if($user['user_as_ally'])
39 37
     {
40 38
       $lab_level = doquery("SELECT ally_members AS effective_level FROM {{alliance}} WHERE id = {$user['user_as_ally']} LIMIT 1", true);
41
-    }
42
-    else
39
+    } else
43 40
     {
44 41
       $tech_intergalactic = mrc_get_level($user, false, TECH_RESEARCH) + 1;
45 42
       $lab_level['effective_level'] = 0;
@@ -217,8 +214,7 @@  discard block
 block discarded – undo
217 214
   return $result;
218 215
 }
219 216
 
220
-function eco_is_builds_in_que($planet_que, $unit_list)
221
-{
217
+function eco_is_builds_in_que($planet_que, $unit_list) {
222 218
   $eco_is_builds_in_que = false;
223 219
 
224 220
   $unit_list = is_array($unit_list) ? $unit_list : array($unit_list => $unit_list);
@@ -240,8 +236,7 @@  discard block
 block discarded – undo
240 236
 }
241 237
 
242 238
 function eco_unit_busy(&$user, &$planet, $unit_id){$result = null;return sn_function_call('eco_unit_busy', [&$user, &$planet, $unit_id, &$result]);}
243
-function sn_eco_unit_busy(&$user, &$planet, $unit_id, &$result)
244
-{
239
+function sn_eco_unit_busy(&$user, &$planet, $unit_id, &$result) {
245 240
   global $config;
246 241
 
247 242
   $result = isset($result) ? $result : false;
@@ -262,8 +257,7 @@  discard block
 block discarded – undo
262 257
       //{
263 258
       //  $result = true;
264 259
       //}
265
-    }
266
-    elseif(($unit_id == UNIT_TECHNOLOGIES || in_array($unit_id, sn_get_groups('tech'))) && !$config->BuildLabWhileRun && $planet['que'])
260
+    } elseif(($unit_id == UNIT_TECHNOLOGIES || in_array($unit_id, sn_get_groups('tech'))) && !$config->BuildLabWhileRun && $planet['que'])
267 261
     {
268 262
       $result = eco_is_builds_in_que($planet['que'], array(STRUC_LABORATORY, STRUC_LABORATORY_NANO));
269 263
     }
Please login to merge, or discard this patch.
classes/classConfig.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -132,9 +132,9 @@  discard block
 block discarded – undo
132 132
     'advGoogleLeftMenuCode'        => '(Place here code for banner)',
133 133
 
134 134
     // Alliance bonus calculations
135
-    'ali_bonus_algorithm'          => 0,  // Bonus calculation algorithm
135
+    'ali_bonus_algorithm'          => 0, // Bonus calculation algorithm
136 136
     'ali_bonus_brackets'           => 10, // Brackets count for ALI_BONUS_BY_RANK
137
-    'ali_bonus_brackets_divisor'   => 10,// Bonus divisor for ALI_BONUS_BY_RANK
137
+    'ali_bonus_brackets_divisor'   => 10, // Bonus divisor for ALI_BONUS_BY_RANK
138 138
     'ali_bonus_divisor'            => 10000000, // Rank divisor for ALI_BONUS_BY_POINTS
139 139
     'ali_bonus_members'            => 10, // Minimum alliance size to start using bonus
140 140
 
@@ -170,17 +170,17 @@  discard block
 block discarded – undo
170 170
     'deuterium_basic_income'       => 0,
171 171
     'eco_scale_storage'            => 1,
172 172
     'eco_stockman_fleet'           => '', // Black Market - Starting amount of s/h ship merchant to sell
173
-    'eco_stockman_fleet_populate'  => 1,  // Populate empty Stockman fleet with ships or not
173
+    'eco_stockman_fleet_populate'  => 1, // Populate empty Stockman fleet with ships or not
174 174
     'empire_mercenary_base_period' => PERIOD_MONTH, // Base
175 175
     'empire_mercenary_temporary'   => 0, // Temporary empire-wide mercenaries
176 176
     'energy_basic_income'          => 0,
177 177
 
178 178
     // Bashing protection settings
179
-    'fleet_bashing_attacks'        => 3,      // Max amount of attack per wave - 3 by default
180
-    'fleet_bashing_interval'       => 1800,   // Maximum interval between attacks when they still count as one wave - 30m by default
181
-    'fleet_bashing_scope'          => 86400,  // Interval on which bashing waves counts - 24h by default
182
-    'fleet_bashing_war_delay'      => 43200,  // Delay before start bashing after declaring war to alliance - 12h by default
183
-    'fleet_bashing_waves'          => 3,      // Max amount of waves per day - 3 by default
179
+    'fleet_bashing_attacks'        => 3, // Max amount of attack per wave - 3 by default
180
+    'fleet_bashing_interval'       => 1800, // Maximum interval between attacks when they still count as one wave - 30m by default
181
+    'fleet_bashing_scope'          => 86400, // Interval on which bashing waves counts - 24h by default
182
+    'fleet_bashing_war_delay'      => 43200, // Delay before start bashing after declaring war to alliance - 12h by default
183
+    'fleet_bashing_waves'          => 3, // Max amount of waves per day - 3 by default
184 184
 
185 185
     'Fleet_Cdr'   => 30,
186 186
     'fleet_speed' => 1,
@@ -188,8 +188,8 @@  discard block
 block discarded – undo
188 188
     'fleet_update_interval' => 4,
189 189
     'fleet_update_lock'     => '', // SQL time when lock was acquired
190 190
 
191
-    'game_adminEmail'       => 'root@localhost',    // Admin's email to show to users
192
-    'game_counter'          => 0,  // Does built-in page hit counter is on?
191
+    'game_adminEmail'       => 'root@localhost', // Admin's email to show to users
192
+    'game_counter'          => 0, // Does built-in page hit counter is on?
193 193
     // Defaults
194 194
     'game_default_language' => 'ru',
195 195
     'game_default_skin'     => 'skins/EpicBlue/',
@@ -203,14 +203,14 @@  discard block
 block discarded – undo
203 203
     'game_maxSystem'      => 199,
204 204
     'game_maxPlanet'      => 15,
205 205
     // Game global settings
206
-    'game_mode'           => 0,           // 0 - SuperNova, 1 - oGame
206
+    'game_mode'           => 0, // 0 - SuperNova, 1 - oGame
207 207
     'game_name'           => 'SuperNova', // Server name (would be on banners and on top of left menu)
208 208
 
209 209
     'game_news_actual'        => PERIOD_DAY_3, // How long announcement would be marked as "New". In seconds. Default - 3 days
210
-    'game_news_overview'      => 3,    // How much last news to show in Overview page
211
-    'game_news_overview_show' => PERIOD_WEEK_2,    // How long news will be shown in Overview page in seconds. Default - 2 weeks
210
+    'game_news_overview'      => 3, // How much last news to show in Overview page
211
+    'game_news_overview_show' => PERIOD_WEEK_2, // How long news will be shown in Overview page in seconds. Default - 2 weeks
212 212
     // Noob protection
213
-    'game_noob_factor'        => 5,    // Multiplier to divide "stronger" and "weaker" users
213
+    'game_noob_factor'        => 5, // Multiplier to divide "stronger" and "weaker" users
214 214
     'game_noob_points'        => 5000, // Below this point user threated as noob. 0 to disable
215 215
 
216 216
     'game_multiaccount_enabled' => 0, // 1 - allow interactions for players with same IP (multiaccounts)
@@ -265,12 +265,12 @@  discard block
 block discarded – undo
265 265
     'payment_currency_exchange_wmu' => 30,
266 266
     'payment_currency_exchange_wmz' => 1,
267 267
 
268
-    'payment_lot_price' => 1,     // Lot price in default currency
269
-    'payment_lot_size'  => 2500,  // Lot size. Also service as minimum amount of DM that could be bought with one transaction
268
+    'payment_lot_price' => 1, // Lot price in default currency
269
+    'payment_lot_size'  => 2500, // Lot size. Also service as minimum amount of DM that could be bought with one transaction
270 270
 
271 271
     'planet_capital_cost'          => 25000, // Cost in DM to move Capital to current planet
272
-    'planet_capital_mining_rate'   => 2.0,   // Capital Mining rates
273
-    'planet_capital_building_rate' => 2.0,   // Capital Building rates
272
+    'planet_capital_mining_rate'   => 2.0, // Capital Mining rates
273
+    'planet_capital_building_rate' => 2.0, // Capital Building rates
274 274
     'planet_teleport_cost'         => 50000, // Cost of planet teleportation
275 275
     'planet_teleport_timeout'      => 86400, // Timeout for next teleportation
276 276
 
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
     'resource_multiplier'     => 1,
291 291
 
292 292
     //Roleplay system
293
-    'rpg_bonus_divisor'       => 10,    // Amount of DM referral shoud get for partner have 1 DM bonus
293
+    'rpg_bonus_divisor'       => 10, // Amount of DM referral shoud get for partner have 1 DM bonus
294 294
     'rpg_bonus_minimum'       => 10000, // Minimum DM ammount for starting paying bonuses to affiliate
295 295
 
296 296
     // Black Market - General
Please login to merge, or discard this patch.
galaxy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
     ||
126 126
     (!empty($uni_galaxyRowPlanet['destruyed']) && CheckAbandonPlanetState($uni_galaxyRowPlanet))
127 127
   ) {
128
-    $template->assign_block_vars('galaxyrow', ['PLANET_NUM' => $Planet,]);
128
+    $template->assign_block_vars('galaxyrow', ['PLANET_NUM' => $Planet, ]);
129 129
     continue;
130 130
   }
131 131
 
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
     'IS_CAPITAL'      => $uni_galaxyRowUser['id_planet'] == $uni_galaxyRowPlanet['id'],
243 243
 
244 244
     'USER_ID'         => $uni_galaxyRowUser['id'],
245
-    'USER_NAME'       => $renderedNick = player_nick_render_to_html($uni_galaxyRowUser, ['icons' => true,]),
245
+    'USER_NAME'       => $renderedNick = player_nick_render_to_html($uni_galaxyRowUser, ['icons' => true, ]),
246 246
     'USER_NAME_JS'    => js_safe_string($renderedNick),
247 247
     'USER_RANK'       => in_array($uni_galaxyRowUser['id'], $user_skip_list) ? '-' : $uni_galaxyRowUser['total_rank'],
248 248
     'USER_BANNED'     => $uni_galaxyRowUser['banaday'],
Please login to merge, or discard this patch.