Explorar o código

Remove the global check for minimum required credits

Jovan Jovanovic %!s(int64=3) %!d(string=hai) anos
pai
achega
7d229ec25b
Modificáronse 1 ficheiros con 1 adicións e 3 borrados
  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)
                     : $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