Browse Source

Remove the global check for minimum required credits

Jovan Jovanovic 3 years ago
parent
commit
7d229ec25b
1 changed files with 1 additions and 3 deletions
  1. 1 3
      app/Http/Controllers/ServerController.php

+ 1 - 3
app/Http/Controllers/ServerController.php

@@ -103,10 +103,8 @@ class ServerController extends Controller
                     ? Configuration::getValueByKey('MINIMUM_REQUIRED_CREDITS_TO_MAKE_SERVER', 50)
                     ? Configuration::getValueByKey('MINIMUM_REQUIRED_CREDITS_TO_MAKE_SERVER', 50)
                     : $product->minimum_credits)
                     : $product->minimum_credits)
             ) {
             ) {
-                return redirect()->route('servers.index')->with('error', "You do not have the required amount of " . CREDITS_DISPLAY_NAME . " to create a new server!");
+                return redirect()->route('servers.index')->with('error', "You do not have the required amount of " . CREDITS_DISPLAY_NAME . " to use this product!");
             }
             }
-        } else if (Auth::user()->credits <= Configuration::getValueByKey('MINIMUM_REQUIRED_CREDITS_TO_MAKE_SERVER', 50)) {
-            return redirect()->route('servers.index')->with('error', "You do not have the required amount of " . CREDITS_DISPLAY_NAME . " to create a new server!");
         }
         }
 
 
         //Required Verification for creating an server
         //Required Verification for creating an server