Forráskód Böngészése

Merge pull request #230 from 1day2die/fix_SERVER_LIMIT_REWARD_

Fix server limit reward
AVMG 3 éve
szülő
commit
d71bc134fb
1 módosított fájl, 4 hozzáadás és 4 törlés
  1. 4 4
      app/Http/Controllers/Admin/PaymentController.php

+ 4 - 4
app/Http/Controllers/Admin/PaymentController.php

@@ -141,12 +141,12 @@ class PaymentController extends Controller
                 $user->increment('credits', $paypalProduct->quantity);
 
                 //update server limit
-                if (Configuration::getValueByKey('SERVER_LIMIT_AFTER_IRL_PURCHASE', 10) !== 0) {
-                    if ($user->server_limit < Configuration::getValueByKey('SERVER_LIMIT_AFTER_IRL_PURCHASE', 10)) {
-                        $user->update(['server_limit' => 10]);
+                if (Configuration::getValueByKey('SERVER_LIMIT_AFTER_IRL_PURCHASE') !== 0) {
+                    if ($user->server_limit < Configuration::getValueByKey('SERVER_LIMIT_AFTER_IRL_PURCHASE')) {
+                        $user->update(['server_limit' => Configuration::getValueByKey('SERVER_LIMIT_AFTER_IRL_PURCHASE')]);
                     }
                 }
-
+                
                 //update role
                 if ($user->role == 'member') {
                     $user->update(['role' => 'client']);