Completed
Push — work-fleets ( abbbcf...8b8b7f )
by SuperNova.WS
05:13
created
includes/functions/eco_planet_update.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -14,13 +14,13 @@  discard block
 block discarded – undo
14 14
 
15 15
   $no_data = array('user' => false, 'planet' => false, 'que' => false);
16 16
 
17
-  if(!$planet) {
17
+  if (!$planet) {
18 18
     return $no_data;
19 19
   }
20 20
 
21
-  if(!$no_user_update) {
21
+  if (!$no_user_update) {
22 22
     $user = intval(is_array($user) && $user['id'] ? $user['id'] : $user);
23
-    if(!$user) {
23
+    if (!$user) {
24 24
       // TODO - Убрать позже
25 25
       print('<h1>СООБЩИТЕ ЭТО АДМИНУ: sys_o_get_updated() - USER пустой!</h1>');
26 26
       $backtrace = debug_backtrace();
@@ -32,17 +32,17 @@  discard block
 block discarded – undo
32 32
     $user = db_user_by_id($user, !$simulation, '*', true);
33 33
   }
34 34
 
35
-  if(empty($user['id'])) {
35
+  if (empty($user['id'])) {
36 36
     return $no_data;
37 37
   }
38 38
 
39
-  if(is_array($planet) && isset($planet['galaxy']) && $planet['galaxy']) {
39
+  if (is_array($planet) && isset($planet['galaxy']) && $planet['galaxy']) {
40 40
     $planet = db_planet_by_vector($planet, '', !$simulation);
41 41
   } else {
42 42
     $planet = intval(is_array($planet) && isset($planet['id']) ? $planet['id'] : $planet);
43 43
     $planet = db_planet_by_id($planet, !$simulation);
44 44
   }
45
-  if(!is_array($planet) || !isset($planet['id'])) {
45
+  if (!is_array($planet) || !isset($planet['id'])) {
46 46
     return $no_data;
47 47
   }
48 48
 
@@ -65,15 +65,15 @@  discard block
 block discarded – undo
65 65
     RES_DEUTERIUM => 0,
66 66
   );
67 67
 
68
-  switch($planet['planet_type']) {
68
+  switch ($planet['planet_type']) {
69 69
     case PT_PLANET:
70
-      foreach($resources_increase as $resource_id => &$increment) {
70
+      foreach ($resources_increase as $resource_id => &$increment) {
71 71
         $resource_name = pname_resource_name($resource_id);
72 72
         $increment = $caps_real['total'][$resource_id] * $ProductionTime / 3600;
73 73
         $store_free = $caps_real['total_storage'][$resource_id] - $planet[$resource_name];
74 74
         $increment = min($increment, max(0, $store_free));
75 75
 
76
-        if($planet[$resource_name] + $increment < 0 && !$simulation) {
76
+        if ($planet[$resource_name] + $increment < 0 && !$simulation) {
77 77
           global $debug;
78 78
           $debug->warning("Player ID {$user['id']} have negative resources on ID {$planet['id']}.{$planet['planet_type']} [{$planet['galaxy']}:{$planet['system']}:{$planet['planet']}]. Difference {$planet[$resource_name]} of {$resource_name}", 'Negative Resources', 501);
79 79
         }
@@ -95,13 +95,13 @@  discard block
 block discarded – undo
95 95
   // TODO пересчитывать размер планеты только при постройке чего-нибудь и при покупке сектора
96 96
   $planet['field_current'] = 0;
97 97
   $sn_group_build_allow = sn_get_groups('build_allow');
98
-  if(is_array($sn_group_build_allow[$planet['planet_type']])) {
99
-    foreach($sn_group_build_allow[$planet['planet_type']] as $building_id) {
98
+  if (is_array($sn_group_build_allow[$planet['planet_type']])) {
99
+    foreach ($sn_group_build_allow[$planet['planet_type']] as $building_id) {
100 100
       $planet['field_current'] += mrc_get_level($user, $planet, $building_id, !$simulation, true);
101 101
     }
102 102
   }
103 103
 
104
-  if($simulation) {
104
+  if ($simulation) {
105 105
     return array('user' => $user, 'planet' => $planet, 'que' => $que);
106 106
   }
107 107
 
Please login to merge, or discard this patch.
includes/functions/qst_quest.php 1 patch
Spacing   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -12,34 +12,34 @@  discard block
 block discarded – undo
12 12
 
13 13
   $in_admin = defined('IN_ADMIN') && IN_ADMIN === true;
14 14
 
15
-  if($in_admin)
15
+  if ($in_admin)
16 16
   {
17 17
     $quest_id = sys_get_param_id('id');
18 18
     $quest_name = sys_get_param_str_unsafe('QUEST_NAME');
19
-    if(!empty($quest_name))
19
+    if (!empty($quest_name))
20 20
     {
21 21
       $quest_description = sys_get_param_str_unsafe('QUEST_DESCRIPTION');
22 22
       try
23 23
       {
24 24
         $quest_rewards_list = sys_get_param('QUEST_REWARDS_LIST');
25 25
         $quest_rewards = array();
26
-        foreach($quest_rewards_list as $quest_rewards_id => $quest_rewards_amount)
26
+        foreach ($quest_rewards_list as $quest_rewards_id => $quest_rewards_amount)
27 27
         {
28
-          if(!in_array($quest_rewards_id, $quest_reward_allowed))
28
+          if (!in_array($quest_rewards_id, $quest_reward_allowed))
29 29
           {
30 30
             throw new Exception($lang['qst_adm_err_reward_type']);
31 31
           }
32 32
 
33
-          if($quest_rewards_amount < 0)
33
+          if ($quest_rewards_amount < 0)
34 34
           {
35 35
             throw new Exception($lang['qst_adm_err_reward_amount']);
36 36
           }
37
-          elseif($quest_rewards_amount > 0)
37
+          elseif ($quest_rewards_amount > 0)
38 38
           {
39 39
             $quest_rewards[] = "{$quest_rewards_id},{$quest_rewards_amount}";
40 40
           }
41 41
         }
42
-        if(empty($quest_rewards))
42
+        if (empty($quest_rewards))
43 43
         {
44 44
           throw new Exception($lang['qst_adm_err_reward_empty']);
45 45
         }
@@ -47,13 +47,13 @@  discard block
 block discarded – undo
47 47
         $quest_rewards = implode(';', $quest_rewards);
48 48
 
49 49
         $quest_unit_id = sys_get_param_int('QUEST_UNIT_ID');
50
-        if(!in_array($quest_unit_id, $quest_units_allowed))
50
+        if (!in_array($quest_unit_id, $quest_units_allowed))
51 51
         {
52 52
           throw new Exception($lang['qst_adm_err_unit_id']);
53 53
         }
54 54
 
55 55
         $quest_unit_amount = sys_get_param_float('QUEST_UNIT_AMOUNT');
56
-        if($quest_unit_amount <= 0)
56
+        if ($quest_unit_amount <= 0)
57 57
         {
58 58
           throw new Exception($lang['qst_adm_err_unit_amount']);
59 59
         }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         // TODO: Change quest type
63 63
         $quest_type = 0;
64 64
 
65
-        if($mode == 'edit')
65
+        if ($mode == 'edit')
66 66
         {
67 67
           $quest_name        = db_escape($quest_name);
68 68
           $quest_description = db_escape($quest_description);
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
       $mode = '';
104 104
     };
105 105
 
106
-    switch($mode)
106
+    switch ($mode)
107 107
     {
108 108
       case 'del':
109 109
         doquery("DELETE FROM {{quest}} WHERE `quest_id` = {$quest_id} LIMIT 1;");
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     $query = doquery("SELECT count(*) AS count FROM {{quest}};", '', true);
121 121
     $config->db_saveItem('quest_total', $query['count']);
122 122
   }
123
-  elseif(!$user_id)
123
+  elseif (!$user_id)
124 124
   {
125 125
     $user_id = $user['id'];
126 126
   }
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     'IN_ADMIN'  => $in_admin,
135 135
   ));
136 136
 
137
-  if($quest)
137
+  if ($quest)
138 138
   {
139 139
     $quest_templatized = qst_templatize(qst_quest_parse($quest, false));
140 140
   }
@@ -143,19 +143,19 @@  discard block
 block discarded – undo
143 143
     $quest_templatized['quest_rewards_list'] = array();
144 144
   }
145 145
 
146
-  foreach($quest_reward_allowed as $unit_id)
146
+  foreach ($quest_reward_allowed as $unit_id)
147 147
   {
148 148
     $found = false;
149
-    foreach($quest_templatized['quest_rewards_list'] as $quest_templatized_reward)
149
+    foreach ($quest_templatized['quest_rewards_list'] as $quest_templatized_reward)
150 150
     {
151
-      if($quest_templatized_reward['ID'] == $unit_id)
151
+      if ($quest_templatized_reward['ID'] == $unit_id)
152 152
       {
153 153
         $found = true;
154 154
         break;
155 155
       }
156 156
     }
157 157
 
158
-    if(!$found)
158
+    if (!$found)
159 159
     {
160 160
       $quest_templatized['quest_rewards_list'][$unit_id] = array(
161 161
         'ID'     => $unit_id,
@@ -167,12 +167,12 @@  discard block
 block discarded – undo
167 167
 
168 168
   qst_assign_to_template($template, $quest_templatized);
169 169
 
170
-  foreach($quest_list as $quest_data)
170
+  foreach ($quest_list as $quest_data)
171 171
   {
172 172
     qst_assign_to_template($template, qst_templatize($quest_data, true), 'quest');
173 173
   }
174 174
 
175
-  foreach($quest_units_allowed as $unit_id)
175
+  foreach ($quest_units_allowed as $unit_id)
176 176
   {
177 177
     $template->assign_block_vars('allowed_unit', array(
178 178
       'ID'   => $unit_id,
@@ -185,12 +185,12 @@  discard block
 block discarded – undo
185 185
 {
186 186
   $quest_list = array();
187 187
 
188
-  if($user_id)
188
+  if ($user_id)
189 189
   {
190
-    if($status !== false)
190
+    if ($status !== false)
191 191
     {
192 192
       $query_add_where = "AND qs.quest_status_status ";
193
-      if($status == null)
193
+      if ($status == null)
194 194
       {
195 195
         $query_add_where .= "IS NULL";
196 196
       }
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
     ;"
211 211
   );
212 212
 
213
-  while($quest = db_fetch($query))
213
+  while ($quest = db_fetch($query))
214 214
   {
215 215
     $quest_list[$quest['quest_id']] = qst_quest_parse($quest);
216 216
   }
@@ -220,16 +220,16 @@  discard block
 block discarded – undo
220 220
 
221 221
 function qst_assign_to_template(&$template, $quest_templatized, $block_name = false)
222 222
 {
223
-  if($block_name)
223
+  if ($block_name)
224 224
   {
225 225
     $template->assign_block_vars($block_name, $quest_templatized);
226 226
   }
227 227
   else
228 228
   {
229 229
     $template->assign_vars($quest_templatized);
230
-    if(!empty($quest_templatized['quest_rewards_list']))
230
+    if (!empty($quest_templatized['quest_rewards_list']))
231 231
     {
232
-      foreach($quest_templatized['quest_rewards_list'] as $quest_reward)
232
+      foreach ($quest_templatized['quest_rewards_list'] as $quest_reward)
233 233
       {
234 234
         $template->assign_block_vars(($block_name ? $block_name . '.' : '') . 'quest_rewards_list', $quest_reward);
235 235
       }
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
   global $lang;
252 252
 
253 253
   $tmp = array();
254
-  foreach($quest['quest_rewards_list'] as $quest_reward_id => $quest_reward_amount)
254
+  foreach ($quest['quest_rewards_list'] as $quest_reward_id => $quest_reward_amount)
255 255
   {
256 256
     $tmp[] = array(
257 257
       'ID'     => $quest_reward_id,
@@ -278,9 +278,9 @@  discard block
 block discarded – undo
278 278
 function qst_active_triggers($quest_list)
279 279
 {
280 280
   $quest_triggers = array();
281
-  foreach($quest_list as $quest_id => $quest)
281
+  foreach ($quest_list as $quest_id => $quest)
282 282
   {
283
-    if($quest['quest_status_status'] != QUEST_STATUS_COMPLETE)
283
+    if ($quest['quest_status_status'] != QUEST_STATUS_COMPLETE)
284 284
     {
285 285
       list($quest_unit_id, $quest_unit_amount) = explode(',', $quest['quest_conditions']);
286 286
       $quest_triggers[$quest_id] = $quest_unit_id;
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
 
293 293
 function qst_reward(&$user, &$rewards, &$quest_list)
294 294
 {
295
-  if(empty($rewards)) return;
295
+  if (empty($rewards)) return;
296 296
 
297 297
   global $lang;
298 298
 
@@ -300,15 +300,15 @@  discard block
 block discarded – undo
300 300
   $total_rewards = array();
301 301
   $comment_dm = '';
302 302
 
303
-  foreach($rewards as $quest_id => $user_data)
304
-    foreach($user_data as $user_id => $planet_data)
305
-      foreach($planet_data as $planet_id => $reward_list)
303
+  foreach ($rewards as $quest_id => $user_data)
304
+    foreach ($user_data as $user_id => $planet_data)
305
+      foreach ($planet_data as $planet_id => $reward_list)
306 306
       {
307 307
         $comment = sprintf($lang['qst_msg_complete_body'], $quest_list[$quest_id]['quest_name']);
308 308
         $comment_dm .= isset($reward_list[RES_DARK_MATTER]) ? $comment : '';
309 309
 
310 310
         $comment_reward = array();
311
-        foreach($reward_list as $unit_id => $unit_amount)
311
+        foreach ($reward_list as $unit_id => $unit_amount)
312 312
         {
313 313
           $comment_reward[] = $unit_amount . ' ' . $lang['tech'][$unit_id];
314 314
           $total_rewards[$user_id][$planet_id][$unit_id] += $unit_amount;
@@ -326,23 +326,23 @@  discard block
 block discarded – undo
326 326
 
327 327
   $group_resources = sn_get_groups('resources_loot');
328 328
   $quest_rewards_allowed = sn_get_groups('quest_rewards');
329
-  if(!empty($total_rewards))
329
+  if (!empty($total_rewards))
330 330
   {
331
-    foreach($total_rewards as $user_id => $planet_data)
331
+    foreach ($total_rewards as $user_id => $planet_data)
332 332
     {
333 333
       $user_row = classSupernova::db_get_record_by_id(LOC_USER, $user_id);
334
-      foreach($planet_data as $planet_id => $unit_data)
334
+      foreach ($planet_data as $planet_id => $unit_data)
335 335
       {
336 336
         $local_changeset = array();
337
-        foreach($unit_data as $unit_id => $unit_amount)
337
+        foreach ($unit_data as $unit_id => $unit_amount)
338 338
         {
339
-          if(!isset($quest_rewards_allowed[$unit_id])) continue;
339
+          if (!isset($quest_rewards_allowed[$unit_id])) continue;
340 340
 
341
-          if($unit_id == RES_DARK_MATTER)
341
+          if ($unit_id == RES_DARK_MATTER)
342 342
           {
343 343
             rpg_points_change($user['id'], RPG_QUEST, $unit_amount, $comment_dm);
344 344
           }
345
-          elseif(isset($group_resources[$unit_id]))
345
+          elseif (isset($group_resources[$unit_id]))
346 346
           {
347 347
             $local_changeset[pname_resource_name($unit_id)] = array('delta' => $unit_amount);
348 348
           }
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
           // unit
354 354
         }
355 355
 
356
-        if(!empty($local_changeset))
356
+        if (!empty($local_changeset))
357 357
         {
358 358
           $planet_id = $planet_id == 0 && isset($user_row['id_planet']) ? $user_row['id_planet'] : $planet_id;
359 359
           $db_changeset[$planet_id ? 'planets' : 'users'][] = array(
Please login to merge, or discard this patch.
includes/functions/flt_mission_missile.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 
14 14
   $mip_data = get_unit_param(UNIT_DEF_MISSILE_INTERPLANET);
15 15
   $MIPDamage = floor(mrc_modify_value($attackerTech, false, TECH_WEAPON, $MIPs * $mip_data[P_ATTACK] * mt_rand(80, 120) / 100));
16
-  foreach($structures as $key => $structure)
16
+  foreach ($structures as $key => $structure)
17 17
   {
18 18
     $unit_info = get_unit_param($key);
19 19
     $amplify = isset($mip_data[P_AMPLIFY][$key]) ? $mip_data[P_AMPLIFY][$key] : 1;
@@ -31,9 +31,9 @@  discard block
 block discarded – undo
31 31
   {
32 32
     //attacking only selected structure
33 33
     $damageDone = $structures[$targetedStructure][$damageTo];
34
-    $structsDestroyed = min( floor($MIPDamage/$damageDone), $structures[$targetedStructure][0] );
34
+    $structsDestroyed = min(floor($MIPDamage / $damageDone), $structures[$targetedStructure][0]);
35 35
     $structures[$targetedStructure][0] -= $structsDestroyed;
36
-    $MIPDamage -= $structsDestroyed*$damageDone;
36
+    $MIPDamage -= $structsDestroyed * $damageDone;
37 37
   }
38 38
   else
39 39
   {
@@ -44,16 +44,16 @@  discard block
 block discarded – undo
44 44
     do
45 45
     {
46 46
       // finding is there any structure that can be damaged with leftovers of $MIPDamage
47
-      foreach($can_be_damaged as $key => $unit_id)
47
+      foreach ($can_be_damaged as $key => $unit_id)
48 48
       {
49 49
 //debug($structures[$unit_id][0]);
50 50
 //debug($structures[$unit_id][$damageTo], $MIPDamage);
51
-        if($structures[$unit_id][0] <= 0 || $structures[$unit_id][$damageTo] > $MIPDamage)
51
+        if ($structures[$unit_id][0] <= 0 || $structures[$unit_id][$damageTo] > $MIPDamage)
52 52
         {
53 53
           unset($can_be_damaged[$key]);
54 54
         }
55 55
       }
56
-      if(empty($can_be_damaged))
56
+      if (empty($can_be_damaged))
57 57
       {
58 58
         break;
59 59
       }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 //debug($destroyed, 'Actually destroyed');
73 73
 
74 74
 //print('<hr>');
75
-    } while($MIPDamage > 0 && !empty($can_be_damaged));
75
+    } while ($MIPDamage > 0 && !empty($can_be_damaged));
76 76
 //debug($MIPDamage, 'MIPDamage left');
77 77
   }
78 78
 //debug($structures);//die();
@@ -87,8 +87,8 @@  discard block
 block discarded – undo
87 87
     $crystal += $destroyed * $unit_info[P_COST][RES_CRYSTAL] / 4;
88 88
   }
89 89
 
90
-  $return['structures'] = $structures;     // Structures left after attack
91
-  $return['metal']      = floor($metal);   // Metal scraps
90
+  $return['structures'] = $structures; // Structures left after attack
91
+  $return['metal']      = floor($metal); // Metal scraps
92 92
   $return['crystal']    = floor($crystal); // Crystal scraps
93 93
 
94 94
   return $return;
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
   $iraks = doquery("SELECT * FROM {{iraks}} WHERE `fleet_end_time` <= " . SN_TIME_NOW . " FOR UPDATE;");
114 114
 
115
-  while($fleetRow = db_fetch($iraks)) {
115
+  while ($fleetRow = db_fetch($iraks)) {
116 116
     set_time_limit(15);
117 117
     $db_changeset = array();
118 118
 
@@ -128,9 +128,9 @@  discard block
 block discarded – undo
128 128
 
129 129
     $rowAttacker = db_user_by_id($fleetRow['fleet_owner'], true);
130 130
 
131
-    if($target_planet_row['id']) {
131
+    if ($target_planet_row['id']) {
132 132
       $planetDefense = array();
133
-      foreach(sn_get_groups('defense_active') as $unit_id) {
133
+      foreach (sn_get_groups('defense_active') as $unit_id) {
134 134
         $planetDefense[$unit_id] = array(mrc_get_level($targetUser, $target_planet_row, $unit_id, true, true));
135 135
       }
136 136
 
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
         $message = $lang['mip_all_destroyed'];
142 142
         $db_changeset['unit'][] = sn_db_unit_changeset_prepare(UNIT_DEF_MISSILE_INTERCEPTOR, -$missiles, $targetUser, $target_planet_row['id']);
143 143
       } else {
144
-        if($interceptors) {
144
+        if ($interceptors) {
145 145
           $message = sprintf($lang['mip_destroyed'], $interceptors);
146 146
           $db_changeset['unit'][] = sn_db_unit_changeset_prepare(UNIT_DEF_MISSILE_INTERCEPTOR, -$interceptors, $targetUser, $target_planet_row['id']);
147 147
         }
@@ -149,16 +149,16 @@  discard block
 block discarded – undo
149 149
 
150 150
         $attackResult = COE_missileAttack($targetUser, $rowAttacker, $missiles - $interceptors, $planetDefense, $fleetRow['primaer']);
151 151
 
152
-        foreach($attackResult['structures'] as $key => $structure) {
152
+        foreach ($attackResult['structures'] as $key => $structure) {
153 153
           $destroyed = $planetDefense[$key][0] - $structure[0];
154
-          if($destroyed) {
154
+          if ($destroyed) {
155 155
             $db_changeset['unit'][] = sn_db_unit_changeset_prepare($key, -$destroyed, $targetUser, $target_planet_row['id']);
156 156
 
157 157
             $message .= "&nbsp;&nbsp;{$lang['tech'][$key]} - {$destroyed} {$lang['quantity']}<br>";
158 158
           }
159 159
         }
160 160
 
161
-        if(!empty($message)) {
161
+        if (!empty($message)) {
162 162
           $message = $lang['mip_defense_destroyed'] . $message . "{$lang['mip_recycled']}{$lang['Metal']}: {$attackResult['metal']}, {$lang['Crystal']}: {$attackResult['crystal']}<br>";
163 163
 
164 164
           db_planet_set_by_id($target_planet_row['id'], "`metal` = `metal` + {$attackResult['metal']}, `crystal` = `crystal` + {$attackResult['crystal']}");
@@ -178,8 +178,8 @@  discard block
 block discarded – undo
178 178
       empty($message) ? $message = $lang['mip_no_defense'] : false;
179 179
       // empty($message) && ($message = $lang['mip_no_defense']);
180 180
 
181
-      msg_send_simple_message ( $fleetRow['fleet_owner'], '', SN_TIME_NOW, MSG_TYPE_SPY, $lang['mip_sender_amd'], $lang['mip_subject_amd'], $message_vorlage . $message );
182
-      msg_send_simple_message ( $fleetRow['fleet_target_owner'], '', SN_TIME_NOW, MSG_TYPE_SPY, $lang['mip_sender_amd'], $lang['mip_subject_amd'], $message_vorlage . $message );
181
+      msg_send_simple_message($fleetRow['fleet_owner'], '', SN_TIME_NOW, MSG_TYPE_SPY, $lang['mip_sender_amd'], $lang['mip_subject_amd'], $message_vorlage . $message);
182
+      msg_send_simple_message($fleetRow['fleet_target_owner'], '', SN_TIME_NOW, MSG_TYPE_SPY, $lang['mip_sender_amd'], $lang['mip_subject_amd'], $message_vorlage . $message);
183 183
     }
184 184
     doquery("DELETE FROM {{iraks}} WHERE id = '{$fleetRow['id']}';");
185 185
   }
Please login to merge, or discard this patch.
includes/functions/rpg_points.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -85,28 +85,28 @@  discard block
 block discarded – undo
85 85
 function rpg_points_change($user_id, $change_type, $dark_matter, $comment = false, $already_changed = false) {
86 86
   global $debug, $config, $dm_change_legit, $user;
87 87
 
88
-  if(!$user_id) {
88
+  if (!$user_id) {
89 89
     return false;
90 90
   }
91 91
 
92 92
   $dm_change_legit = true;
93 93
   $sn_data_dark_matter_db_name = pname_resource_name(RES_DARK_MATTER);
94 94
 
95
-  if($already_changed) {
95
+  if ($already_changed) {
96 96
     $rows_affected = 1;
97 97
   } else {
98 98
     $changeset = array();
99 99
     $a_user = db_user_by_id($user_id, true);
100
-    if($dark_matter < 0) {
100
+    if ($dark_matter < 0) {
101 101
       $dark_matter_exists = mrc_get_level($a_user, null, RES_DARK_MATTER, false, true);
102 102
       $dark_matter_exists < 0 ? $dark_matter_exists = 0 : false;
103 103
       $metamatter_to_reduce = -$dark_matter - $dark_matter_exists;
104
-      if($metamatter_to_reduce > 0) {
104
+      if ($metamatter_to_reduce > 0) {
105 105
         $metamatter_exists = mrc_get_level($a_user, null, RES_METAMATTER);
106
-        if($metamatter_exists < $metamatter_to_reduce) {
106
+        if ($metamatter_exists < $metamatter_to_reduce) {
107 107
           $debug->error('Ошибка снятия ТМ - ММ+ТМ меньше, чем сумма для снятия!', 'Ошибка снятия ТМ', LOG_ERR_INT_NOT_ENOUGH_DARK_MATTER);
108 108
         }
109
-        if(is_array($comment)) {
109
+        if (is_array($comment)) {
110 110
           $comment = call_user_func_array('sprintf', $comment);
111 111
         }
112 112
 //        mm_points_change($user_id, $change_type, -$metamatter_to_reduce, 'ММ в ТМ: ' . (-$dark_matter) . ' ТМ = ' . $dark_matter_exists . ' ТМ + ' . $metamatter_to_reduce . ' ММ. ' . $comment);
@@ -121,9 +121,9 @@  discard block
 block discarded – undo
121 121
     $rows_affected = classSupernova::$db->db_affected_rows();
122 122
   }
123 123
 
124
-  if($rows_affected || !$dark_matter) {
124
+  if ($rows_affected || !$dark_matter) {
125 125
     $page_url = db_escape($_SERVER['SCRIPT_NAME']);
126
-    if(is_array($comment)) {
126
+    if (is_array($comment)) {
127 127
       $comment = call_user_func_array('sprintf', $comment);
128 128
     }
129 129
     $comment = db_escape($comment);
@@ -137,18 +137,18 @@  discard block
 block discarded – undo
137 137
         {$dark_matter}, '{$comment}', '{$page_url}', {$user_id}
138 138
       );");
139 139
 
140
-    if($user['id'] == $user_id) {
140
+    if ($user['id'] == $user_id) {
141 141
       $user['dark_matter'] += $dark_matter;
142 142
     }
143 143
 
144
-    if($dark_matter > 0) {
144
+    if ($dark_matter > 0) {
145 145
       $old_referral = doquery("SELECT * FROM {{referrals}} WHERE `id` = {$user_id} LIMIT 1 FOR UPDATE;", '', true);
146
-      if($old_referral['id']) {
146
+      if ($old_referral['id']) {
147 147
         doquery("UPDATE {{referrals}} SET dark_matter = dark_matter + '{$dark_matter}' WHERE `id` = {$user_id} LIMIT 1;");
148 148
         $new_referral = doquery("SELECT * FROM {{referrals}} WHERE `id` = {$user_id} LIMIT 1;", '', true);
149 149
 
150 150
         $partner_bonus = floor($new_referral['dark_matter'] / $config->rpg_bonus_divisor) - ($old_referral['dark_matter'] >= $config->rpg_bonus_minimum ? floor($old_referral['dark_matter'] / $config->rpg_bonus_divisor) : 0);
151
-        if($partner_bonus > 0 && $new_referral['dark_matter'] >= $config->rpg_bonus_minimum) {
151
+        if ($partner_bonus > 0 && $new_referral['dark_matter'] >= $config->rpg_bonus_minimum) {
152 152
           rpg_points_change($new_referral['id_partner'], RPG_REFERRAL, $partner_bonus, "Incoming From Referral ID {$user_id}");
153 153
         }
154 154
       }
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 {
166 166
   $q = 1.03;
167 167
 
168
-  switch($type)
168
+  switch ($type)
169 169
   {
170 170
     case RPG_STRUCTURE:
171 171
       $field_level = 'lvl_minier';
@@ -203,19 +203,19 @@  discard block
 block discarded – undo
203 203
 
204 204
   $xp = &$user[$field_xp];
205 205
 
206
-  if($xp_to_add)
206
+  if ($xp_to_add)
207 207
   {
208 208
     $xp += $xp_to_add;
209 209
     db_user_set_by_id($user['id'], "`{$field_xp}` = `{$field_xp}` + '{$xp_to_add}'");
210 210
   }
211 211
 
212 212
   $level = $user[$field_level];
213
-  while($xp > rpg_xp_for_level($level + 1, $b1, $q))
213
+  while ($xp > rpg_xp_for_level($level + 1, $b1, $q))
214 214
   {
215 215
     $level++;
216 216
   }
217 217
   $level -= $user[$field_level];
218
-  if($level > 0)
218
+  if ($level > 0)
219 219
   {
220 220
     db_user_set_by_id($user['id'], "`{$field_level}` = `{$field_level}` + '{$level}'");
221 221
     rpg_points_change($user['id'], $type, $level * 1000, $comment);
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
 
226 226
 function rpg_xp_for_level($level, $b1, $q)
227 227
 {
228
-  return floor($b1 * (pow($q, $level) - 1)/($q - 1));
228
+  return floor($b1 * (pow($q, $level) - 1) / ($q - 1));
229 229
 }
230 230
 
231 231
 function rpg_get_miner_xp($level)
Please login to merge, or discard this patch.
includes/functions/msg_send_simple_message.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     "ally_id = '{$ally_id}'" . ($ally_rank_id >= 0 ? " AND ally_rank_id = {$ally_rank_id}" : ''),
27 27
     false, 'id, username');
28 28
   // while ($u = db_fetch($query))
29
-  foreach($query as $u)
29
+  foreach ($query as $u)
30 30
   {
31 31
     $sendList[] = $u['id'];
32 32
     $list .= "<br>{$u['username']} ";
@@ -41,19 +41,19 @@  discard block
 block discarded – undo
41 41
 {
42 42
   global $config, $user, $sn_message_class_list;
43 43
 
44
-  if(!$owners)
44
+  if (!$owners)
45 45
   {
46 46
     return;
47 47
   }
48 48
 
49 49
   $timestamp = $timestamp ? $timestamp : SN_TIME_NOW;
50 50
   $sender = intval($sender);
51
-  if(!is_array($owners))
51
+  if (!is_array($owners))
52 52
   {
53 53
     $owners = array($owners);
54 54
   }
55 55
 
56
-  if(!$escaped)
56
+  if (!$escaped)
57 57
   {
58 58
     $from = db_escape($from);
59 59
     $subject = db_escape($subject);
@@ -69,9 +69,9 @@  discard block
 block discarded – undo
69 69
 
70 70
   $message_class_name_total = $sn_message_class_list[MSG_TYPE_NEW]['name'];
71 71
 
72
-  if($owners[0] == '*')
72
+  if ($owners[0] == '*')
73 73
   {
74
-    if($user['authlevel'] < 3)
74
+    if ($user['authlevel'] < 3)
75 75
     {
76 76
       return false;
77 77
     }
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
     foreach ($owners as $owner)
89 89
     {
90
-      if($user['id'] != $owner)
90
+      if ($user['id'] != $owner)
91 91
       {
92 92
         $owner_row = db_user_by_id($owner);
93 93
       }
@@ -97,18 +97,18 @@  discard block
 block discarded – undo
97 97
       }
98 98
       sys_user_options_unpack($owner_row);
99 99
 
100
-      if($force || !$message_class_switchable || $owner_row["opt_{$message_class_name}"])
100
+      if ($force || !$message_class_switchable || $owner_row["opt_{$message_class_name}"])
101 101
       {
102 102
         $insert_values[] = sprintf($insert_template, $owner);
103 103
       }
104 104
 
105
-      if($message_class_email && $config->game_email_pm && $owner_row["opt_email_{$message_class_name}"])
105
+      if ($message_class_email && $config->game_email_pm && $owner_row["opt_email_{$message_class_name}"])
106 106
       {
107 107
         @$result = mymail($owner_row['email'], $subject, $text_unescaped, '', true);
108 108
       }
109 109
     }
110 110
 
111
-    if(empty($insert_values))
111
+    if (empty($insert_values))
112 112
     {
113 113
       return;
114 114
     }
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
   }
119 119
   db_user_list_set_mass_mail($owners, "`{$message_class_name}` = `{$message_class_name}` + 1, `{$message_class_name_total}` = `{$message_class_name_total}` + 1");
120 120
 
121
-  if(in_array($user['id'], $owners) || $owners[0] == '*')
121
+  if (in_array($user['id'], $owners) || $owners[0] == '*')
122 122
   {
123 123
     $user[$message_class_name]++;
124 124
     $user[$message_class_name_total]++;
Please login to merge, or discard this patch.
includes/functions/eco_get_planet_caps.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 function eco_get_planet_caps_modify_production(&$item, $key, $data) {
4 4
   static $modifiers;
5 5
 
6
-  if(!$modifiers) {
6
+  if (!$modifiers) {
7 7
     $modifiers = sn_get_groups('modifiers');
8 8
   }
9 9
   $item = floor(mrc_modify_value($data['user'], $data['planet'], $modifiers[MODIFIER_RESOURCE_PRODUCTION], $item));
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
   static $sn_group_modifiers, $config_resource_multiplier, $config_resource_multiplier_plain, $config_eco_scale_storage;
17 17
 
18
-  if(!$sn_group_modifiers) {
18
+  if (!$sn_group_modifiers) {
19 19
     $sn_group_modifiers = sn_get_groups('modifiers');
20 20
     $config_resource_multiplier = game_resource_multiplier();
21 21
     $config_resource_multiplier_plain = game_resource_multiplier(true);
@@ -26,15 +26,15 @@  discard block
 block discarded – undo
26 26
   $caps['storage'][RES_METAL][0] = $config->eco_planet_storage_metal;
27 27
   $caps['storage'][RES_CRYSTAL][0] = $config->eco_planet_storage_crystal;
28 28
   $caps['storage'][RES_DEUTERIUM][0] = $config->eco_planet_storage_deuterium;
29
-  foreach(sn_get_groups('storages') as $unit_id) {
30
-    foreach(get_unit_param($unit_id, P_STORAGE) as $resource_id => $function) {
29
+  foreach (sn_get_groups('storages') as $unit_id) {
30
+    foreach (get_unit_param($unit_id, P_STORAGE) as $resource_id => $function) {
31 31
       $caps['storage'][$resource_id][$unit_id] = floor($config_eco_scale_storage *
32 32
         mrc_modify_value($user, $planet_row, $sn_group_modifiers[MODIFIER_RESOURCE_CAPACITY], $function(mrc_get_level($user, $planet_row, $unit_id)))
33 33
       );
34 34
     }
35 35
   }
36 36
 
37
-  if($planet_row['planet_type'] == PT_MOON) {
37
+  if ($planet_row['planet_type'] == PT_MOON) {
38 38
     return $caps;
39 39
   }
40 40
 
@@ -46,12 +46,12 @@  discard block
 block discarded – undo
46 46
   $caps['production_full'][RES_DEUTERIUM][0] = floor($config->deuterium_basic_income * $config_resource_multiplier * (isset($planet_density[RES_DEUTERIUM]) ? $planet_density[RES_DEUTERIUM] : 1));
47 47
   $caps['production_full'][RES_ENERGY][0] = floor($config->energy_basic_income * $config_resource_multiplier_plain * (isset($planet_density[RES_ENERGY]) ? $planet_density[RES_ENERGY] : 1));
48 48
 
49
-  foreach(sn_get_groups('factories') as $unit_id) {
49
+  foreach (sn_get_groups('factories') as $unit_id) {
50 50
     $unit_data = get_unit_param($unit_id);
51 51
     $unit_level = mrc_get_level($user, $planet_row, $unit_id);
52 52
     $unit_load = $planet_row[pname_factory_production_field_name($unit_id)];
53 53
 
54
-    foreach($unit_data[P_UNIT_PRODUCTION] as $resource_id => $function) {
54
+    foreach ($unit_data[P_UNIT_PRODUCTION] as $resource_id => $function) {
55 55
       $caps['production_full'][$resource_id][$unit_id] = $function($unit_level, $unit_load, $user, $planet_row)
56 56
         * ($resource_id == RES_ENERGY ? $config_resource_multiplier_plain : $config_resource_multiplier)
57 57
         * (isset($planet_density[$resource_id]) ? $planet_density[$resource_id] : 1);
@@ -60,21 +60,21 @@  discard block
 block discarded – undo
60 60
 
61 61
   array_walk_recursive($caps['production_full'], 'eco_get_planet_caps_modify_production', array('user' => $user, 'planet' => $planet_row));
62 62
 
63
-  foreach($caps['production_full'] as $resource_id => $resource_data) {
63
+  foreach ($caps['production_full'] as $resource_id => $resource_data) {
64 64
     $caps['total_production_full'][$resource_id] = array_sum($resource_data);
65 65
   }
66 66
 
67 67
   $caps['production'] = $caps['production_full'];
68 68
 
69
-  if($caps['production'][RES_ENERGY][STRUC_MINE_FUSION]) {
69
+  if ($caps['production'][RES_ENERGY][STRUC_MINE_FUSION]) {
70 70
     $deuterium_balance = array_sum($caps['production'][RES_DEUTERIUM]);
71 71
     $energy_balance = array_sum($caps['production'][RES_ENERGY]);
72
-    if($deuterium_balance < 0 || $energy_balance < 0) {
72
+    if ($deuterium_balance < 0 || $energy_balance < 0) {
73 73
       $caps['production'][RES_DEUTERIUM][STRUC_MINE_FUSION] = $caps['production'][RES_ENERGY][STRUC_MINE_FUSION] = 0;
74 74
     }
75 75
   }
76 76
 
77
-  foreach($caps['production'][RES_ENERGY] as $energy) {
77
+  foreach ($caps['production'][RES_ENERGY] as $energy) {
78 78
     $caps[RES_ENERGY][$energy >= 0 ? BUILD_CREATE : BUILD_DESTROY] += $energy;
79 79
   }
80 80
 
@@ -84,10 +84,10 @@  discard block
 block discarded – undo
84 84
     ? $caps[RES_ENERGY][BUILD_CREATE] / $caps[RES_ENERGY][BUILD_DESTROY]
85 85
     : 1;
86 86
 
87
-  foreach($caps['production'] as $resource_id => &$resource_data) {
88
-    if($caps['efficiency'] != 1) {
89
-      foreach($resource_data as $unit_id => &$resource_production) {
90
-        if(!($unit_id == STRUC_MINE_FUSION && $resource_id == RES_DEUTERIUM) && $unit_id != 0 && !($resource_id == RES_ENERGY && $resource_production >= 0)) {
87
+  foreach ($caps['production'] as $resource_id => &$resource_data) {
88
+    if ($caps['efficiency'] != 1) {
89
+      foreach ($resource_data as $unit_id => &$resource_production) {
90
+        if (!($unit_id == STRUC_MINE_FUSION && $resource_id == RES_DEUTERIUM) && $unit_id != 0 && !($resource_id == RES_ENERGY && $resource_production >= 0)) {
91 91
           $resource_production = $resource_production * $caps['efficiency'];
92 92
         }
93 93
       }
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     $caps['total'][$resource_id] = $caps['total'][$resource_id] >= 0 ? floor($caps['total'][$resource_id]) : ceil($caps['total'][$resource_id]);
97 97
   }
98 98
 
99
-  foreach($caps['storage'] as $resource_id => &$resource_data) {
99
+  foreach ($caps['storage'] as $resource_id => &$resource_data) {
100 100
     $caps['total_storage'][$resource_id] = array_sum($resource_data);
101 101
   }
102 102
 
Please login to merge, or discard this patch.
includes/functions/scheduler_process.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -8,19 +8,19 @@  discard block
 block discarded – undo
8 8
   $ts_var_stat_update = strtotime($config->db_loadItem('var_stat_update'));
9 9
   $ts_scheduled_update = sys_schedule_get_prev_run($config->db_loadItem('stats_schedule'), $config->var_stat_update);
10 10
 
11
-  if(sys_get_param_int('admin_update')) {
11
+  if (sys_get_param_int('admin_update')) {
12 12
     define('USER_LEVEL', isset($user['authlevel']) ? $user['authlevel'] : -1);
13
-    if(USER_LEVEL > 0) {
13
+    if (USER_LEVEL > 0) {
14 14
       $is_admin_request = true;
15 15
       $ts_scheduled_update = SN_TIME_NOW;
16 16
     }
17 17
   }
18 18
 
19
-  if($ts_scheduled_update > $ts_var_stat_update) {
19
+  if ($ts_scheduled_update > $ts_var_stat_update) {
20 20
     lng_include('admin');
21 21
     sn_db_transaction_start();
22 22
     $ts_var_stat_update_end = strtotime($config->db_loadItem('var_stat_update_end'));
23
-    if(SN_TIME_NOW > $ts_var_stat_update_end) {
23
+    if (SN_TIME_NOW > $ts_var_stat_update_end) {
24 24
       $old_server_status = $config->db_loadItem('game_disable');
25 25
       $config->db_saveItem('game_disable', GAME_DISABLE_STAT);
26 26
 
@@ -56,13 +56,13 @@  discard block
 block discarded – undo
56 56
       $config->db_saveItem('var_stat_update_end', SN_TIME_SQL);
57 57
 
58 58
       $config->db_saveItem('game_disable', $old_server_status);
59
-    } elseif($ts_scheduled_update > $ts_var_stat_update) {
59
+    } elseif ($ts_scheduled_update > $ts_var_stat_update) {
60 60
       $timeout = strtotime($config->db_loadItem('var_stat_update_end')) - SN_TIME_NOW;
61 61
       $msg = $config->db_loadItem('var_stat_update_msg');
62 62
       $msg = "{$msg} ETA {$timeout} seconds. Please wait...";
63 63
     }
64 64
     sn_db_transaction_rollback();
65
-  } elseif($is_admin_request) {
65
+  } elseif ($is_admin_request) {
66 66
     $msg = 'Stat is up to date';
67 67
   }
68 68
 
Please login to merge, or discard this patch.
includes/functions/sys_bbcode.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -107,23 +107,23 @@
 block discarded – undo
107 107
 
108 108
   !empty($config->url_faq) ? $msg = str_replace('faq://', $config->url_faq, $msg) : false;
109 109
 
110
-  foreach($supernova->design['bbcodes'] as $auth_level => $replaces) {
111
-    if($auth_level > $author_auth) {
110
+  foreach ($supernova->design['bbcodes'] as $auth_level => $replaces) {
111
+    if ($auth_level > $author_auth) {
112 112
       continue;
113 113
     }
114 114
 
115
-    foreach($replaces as $key => $html) {
116
-      $msg = preg_replace(''.$key.'', $html, $msg);
115
+    foreach ($replaces as $key => $html) {
116
+      $msg = preg_replace('' . $key . '', $html, $msg);
117 117
     }
118 118
   }
119 119
 
120
-  foreach($supernova->design['smiles'] as $auth_level => $replaces) {
121
-    if($auth_level > $author_auth) {
120
+  foreach ($supernova->design['smiles'] as $auth_level => $replaces) {
121
+    if ($auth_level > $author_auth) {
122 122
       continue;
123 123
     }
124 124
 
125
-    foreach($replaces as $key => $imgName) {
126
-      $msg = preg_replace("#" . addcslashes($key, '()[]{}') . "#isU","<img src=\"design/images/smileys/".$imgName.".gif\" align=\"absmiddle\" title=\"".$key."\" alt=\"".$key."\">",$msg);
125
+    foreach ($replaces as $key => $imgName) {
126
+      $msg = preg_replace("#" . addcslashes($key, '()[]{}') . "#isU", "<img src=\"design/images/smileys/" . $imgName . ".gif\" align=\"absmiddle\" title=\"" . $key . "\" alt=\"" . $key . "\">", $msg);
127 127
     }
128 128
   }
129 129
 
Please login to merge, or discard this patch.
includes/vars_combats.php 1 patch
Spacing   +23 added lines, -23 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('INSIDE'))
3
+if (!defined('INSIDE'))
4 4
 {
5 5
   die('Hack attempt!');
6 6
 }
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     'shield' => 10,
39 39
     'armor' => 400,
40 40
     'attack' => 5,
41
-    'amplify' => array(SHIP_SPY => 100, SHIP_SATTELITE_SOLAR => 250, ),
41
+    'amplify' => array(SHIP_SPY => 100, SHIP_SATTELITE_SOLAR => 250,),
42 42
   ),
43 43
   SHIP_CARGO_BIG => array(
44 44
     'name' => 'big_ship_cargo',
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     'shield' => 25,
59 59
     'armor' => 1200,
60 60
     'attack' => 5,
61
-    'amplify' => array(SHIP_SPY => 100, SHIP_SATTELITE_SOLAR => 250, ),
61
+    'amplify' => array(SHIP_SPY => 100, SHIP_SATTELITE_SOLAR => 250,),
62 62
     'engine' => array(
63 63
       array(
64 64
         'tech' => TECH_ENGINE_CHEMICAL,
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     'shield' => 50,
87 87
     'armor' => 3000,
88 88
     'attack' => 10,
89
-    'amplify' => array(SHIP_SPY => 100, SHIP_SATTELITE_SOLAR => 250, ),
89
+    'amplify' => array(SHIP_SPY => 100, SHIP_SATTELITE_SOLAR => 250,),
90 90
     'engine' => array(
91 91
       array(
92 92
         'tech' => TECH_ENGINE_ION,
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     'shield' => 200,
115 115
     'armor' => 70000,
116 116
     'attack' => 50,
117
-    'amplify' => array(SHIP_SPY => 100, SHIP_SATTELITE_SOLAR => 250, ),
117
+    'amplify' => array(SHIP_SPY => 100, SHIP_SATTELITE_SOLAR => 250,),
118 118
     'engine' => array(
119 119
       array(
120 120
         'tech' => TECH_ENGINE_HYPER,
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     'shield' => 100,
144 144
     'armor' => 3000,
145 145
     'attack' => 50,
146
-    'amplify' => array(SHIP_SPY => 10.001, SHIP_SATTELITE_SOLAR => 21, ),
146
+    'amplify' => array(SHIP_SPY => 10.001, SHIP_SATTELITE_SOLAR => 21,),
147 147
     'engine' => array(
148 148
       array(
149 149
         'tech' => TECH_ENGINE_ION,
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
     'shield' => 10,
172 172
     'armor' => 1600,
173 173
     'attack' => 1,
174
-    'amplify' => array(SHIP_SPY => 500.05, SHIP_SATTELITE_SOLAR => 1050, ),
174
+    'amplify' => array(SHIP_SPY => 500.05, SHIP_SATTELITE_SOLAR => 1050,),
175 175
     'engine' => array(
176 176
       array(
177 177
         'tech' => TECH_ENGINE_CHEMICAL,
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     'shield' =>  0.01,
200 200
     'armor' => 100,
201 201
     'attack' =>  0.01,
202
-    'amplify' => array( SHIP_SPY => 1,),
202
+    'amplify' => array(SHIP_SPY => 1,),
203 203
     'engine' => array(
204 204
       array(
205 205
         'tech' => TECH_ENGINE_CHEMICAL,
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
       'factor' => 1,
224 224
     ),
225 225
     P_UNIT_PRODUCTION => array(
226
-      RES_ENERGY => function($level, $production_factor, $user, $planet_row) {return ($planet_row["temp_max"] / 4 + 20) * $level * (0.1 * $production_factor);},
226
+      RES_ENERGY => function($level, $production_factor, $user, $planet_row) {return ($planet_row["temp_max"] / 4 + 20) * $level * (0.1 * $production_factor); },
227 227
     ),
228 228
     P_MINING_IS_MANAGED => true,
229 229
 
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
     'shield' => 10,
233 233
     'armor' => 200,
234 234
     'attack' => 1,
235
-    'amplify' => array(SHIP_SPY => 1, ),
235
+    'amplify' => array(SHIP_SPY => 1,),
236 236
     'engine' => array(
237 237
       array(
238 238
         'tech' => TECH_ENGINE_CHEMICAL,
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
     'shield' => 10,
265 265
     'armor' => 400,
266 266
     'attack' => 50,
267
-    'amplify' => array(SHIP_CARGO_SMALL => 16.4, SHIP_SPY => 10.001, SHIP_SATTELITE_SOLAR => 21, ),
267
+    'amplify' => array(SHIP_CARGO_SMALL => 16.4, SHIP_SPY => 10.001, SHIP_SATTELITE_SOLAR => 21,),
268 268
     'engine' => array(
269 269
       array(
270 270
         'tech' => TECH_ENGINE_CHEMICAL,
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
     'shield' => 25,
294 294
     'armor' => 1000,
295 295
     'attack' => 150,
296
-    'amplify' => array(SHIP_CARGO_SMALL => 8.2, SHIP_SPY => 3.33367, SHIP_SATTELITE_SOLAR => 7, ),
296
+    'amplify' => array(SHIP_CARGO_SMALL => 8.2, SHIP_SPY => 3.33367, SHIP_SATTELITE_SOLAR => 7,),
297 297
     'engine' => array(
298 298
       array(
299 299
         'tech' => TECH_ENGINE_ION,
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
     'shield' =>  50,
353 353
     'armor' => 2700,
354 354
     'attack' => 400,
355
-    'amplify' => array(SHIP_SMALL_FIGHTER_LIGHT => 6.15, SHIP_SPY => 1.25013, SHIP_SATTELITE_SOLAR => 2.625, UNIT_DEF_TURRET_MISSILE => 5.5, ),
355
+    'amplify' => array(SHIP_SMALL_FIGHTER_LIGHT => 6.15, SHIP_SPY => 1.25013, SHIP_SATTELITE_SOLAR => 2.625, UNIT_DEF_TURRET_MISSILE => 5.5,),
356 356
     'engine' => array(
357 357
       array(
358 358
         'tech' => TECH_ENGINE_ION,
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
     'shield' =>  200,
412 412
     'armor' =>  6000,
413 413
     'attack' => 1000,
414
-    'amplify' => array(SHIP_SPY => 0.50005, SHIP_SATTELITE_SOLAR => 1.05, UNIT_DEF_TURRET_MISSILE => 1.76, ),
414
+    'amplify' => array(SHIP_SPY => 0.50005, SHIP_SATTELITE_SOLAR => 1.05, UNIT_DEF_TURRET_MISSILE => 1.76,),
415 415
     'engine' => array(
416 416
       array(
417 417
         'tech' => TECH_ENGINE_HYPER,
@@ -507,7 +507,7 @@  discard block
 block discarded – undo
507 507
     'shield' =>  500,
508 508
     'armor' => 11000,
509 509
     'attack' => 2000,
510
-    'amplify' => array(SHIP_SPY => 0.25003, SHIP_SATTELITE_SOLAR => 0.525, SHIP_LARGE_BATTLESHIP => 7.4, UNIT_DEF_TURRET_LASER_SMALL => 1.125, ),
510
+    'amplify' => array(SHIP_SPY => 0.25003, SHIP_SATTELITE_SOLAR => 0.525, SHIP_LARGE_BATTLESHIP => 7.4, UNIT_DEF_TURRET_LASER_SMALL => 1.125,),
511 511
     'engine' => array(
512 512
       array(
513 513
         'tech' => TECH_ENGINE_HYPER,
@@ -611,7 +611,7 @@  discard block
 block discarded – undo
611 611
     'shield' => 20,
612 612
     'armor' => 200,
613 613
     'attack' => 80,
614
-    'amplify' => array(SHIP_SPY => 7, ),
614
+    'amplify' => array(SHIP_SPY => 7,),
615 615
   ),
616 616
   UNIT_DEF_TURRET_LASER_SMALL => array(
617 617
     'name' => 'small_laser',
@@ -629,7 +629,7 @@  discard block
 block discarded – undo
629 629
     'shield' => 25,
630 630
     'armor' => 200,
631 631
     'attack' => 100,
632
-    'amplify' => array(SHIP_SPY => 5, ),
632
+    'amplify' => array(SHIP_SPY => 5,),
633 633
   ),
634 634
   UNIT_DEF_TURRET_LASER_BIG => array(
635 635
     'name' => 'big_laser',
@@ -647,7 +647,7 @@  discard block
 block discarded – undo
647 647
     'shield' => 100,
648 648
     'armor' => 800,
649 649
     'attack' => 250,
650
-    'amplify' => array(SHIP_SPY => 2, ),
650
+    'amplify' => array(SHIP_SPY => 2,),
651 651
   ),
652 652
   UNIT_DEF_TURRET_GAUSS => array(
653 653
     'name' => 'gauss_canyon',
@@ -665,7 +665,7 @@  discard block
 block discarded – undo
665 665
     'armor' => 3500,
666 666
     'shield' => 200,
667 667
     'attack' => 1100,
668
-    'amplify' => array(SHIP_SPY => 0.5, ),
668
+    'amplify' => array(SHIP_SPY => 0.5,),
669 669
   ),
670 670
   UNIT_DEF_TURRET_ION => array(
671 671
     'name' => 'ionic_canyon',
@@ -683,7 +683,7 @@  discard block
 block discarded – undo
683 683
     'shield' => 500,
684 684
     'armor' => 800,
685 685
     'attack' => 150,
686
-    'amplify' => array(SHIP_SPY => 3.3, ),
686
+    'amplify' => array(SHIP_SPY => 3.3,),
687 687
   ),
688 688
   UNIT_DEF_TURRET_PLASMA => array(
689 689
     'name' => 'buster_canyon',
@@ -701,7 +701,7 @@  discard block
 block discarded – undo
701 701
     'shield' => 300,
702 702
     'armor' => 10000,
703 703
     'attack' => 3000,
704
-    'amplify' => array(SHIP_SPY => 0.17, ),
704
+    'amplify' => array(SHIP_SPY => 0.17,),
705 705
   ),
706 706
 
707 707
   UNIT_DEF_SHIELD_SMALL => array(
@@ -721,7 +721,7 @@  discard block
 block discarded – undo
721 721
     'shield' => 2000,
722 722
     'armor' => 2000,
723 723
     'attack' => 1,
724
-    'amplify' => array(SHIP_SPY => 500, ),
724
+    'amplify' => array(SHIP_SPY => 500,),
725 725
   ),
726 726
   UNIT_DEF_SHIELD_BIG => array(
727 727
     'name' => 'big_protection_shield',
@@ -740,7 +740,7 @@  discard block
 block discarded – undo
740 740
     'shield' => 2000,
741 741
     'armor' => 10000,
742 742
     'attack' => 1,
743
-    'amplify' => array(SHIP_SPY => 500, ),
743
+    'amplify' => array(SHIP_SPY => 500,),
744 744
   ),
745 745
   UNIT_DEF_SHIELD_PLANET => array(
746 746
     'name'      => 'planet_protector',
Please login to merge, or discard this patch.