PPPPPPP 1 ay önce
ebeveyn
işleme
8cc4c55753

+ 2 - 2
app/Game/Config/PPGameIDs.php

@@ -270,7 +270,7 @@ class PPGameIDs
         'vs10bookviking'    => ['name' => 'Book of Vikings', 'code' => 'vs10bookviking', 'gameid' => 1597743733,'hide_logo'=>false],
         'vs10luckcharm'     => ['name' => 'Lucky Grace And Charm', 'code' => 'vs10luckcharm', 'gameid' => 1614601142,'hide_logo'=>false],
         'vs20emptybank'     => ['name' => 'Empty the Bank', 'code' => 'vs20emptybank', 'gameid' => 1617603300,'hide_logo'=>false],
-        'vswayslions'       => ['name' => '5 Lions Megaways', 'code' => 'vswayslions', 'gameid' => 1613654675,'hide_logo'=>false],
+        'vswayslions'       => ['name' => '5 Lions Megaways', 'code' => 'vswayslions', 'gameid' => 1613654675,'hide_logo'=>true],
         'vswayslight'       => ['name' => 'Lucky Lightning', 'code' => 'vswayslight', 'gameid' => 1613724310,'hide_logo'=>false],
         'vs5drhs'           => ['name' => 'Dragon Hot Hold and Spin', 'code' => 'vs5drhs', 'gameid' => 1611758020,'hide_logo'=>false],
         'vs25rio'           => ['name' => 'Heart of Rio', 'code' => 'vs25rio', 'gameid' => 1616072367,'hide_logo'=>false],
@@ -316,7 +316,7 @@ class PPGameIDs
         'vs5ultra'          => ['name' => 'Ultra Hold and Spin', 'code' => 'vs5ultra', 'gameid' => 1591953815,'hide_logo'=>false],
         'vswayswerewolf'    => ['name' => 'Curse of the Werewolf Megaways', 'code' => 'vswayswerewolf', 'gameid' => 1589544488,'hide_logo'=>false],
         'vs20gorilla'       => ['name' => 'Jungle Gorilla', 'code' => 'vs20gorilla', 'gameid' => 1586253637,'hide_logo'=>false],
-        'vswaysdogs'        => ['name' => 'The Dog House Megaways', 'code' => 'vswaysdogs', 'gameid' => 1588845613,'hide_logo'=>false],
+        'vswaysdogs'        => ['name' => 'The Dog House Megaways', 'code' => 'vswaysdogs', 'gameid' => 1588845613,'hide_logo'=>true],
         'vs9aztecgemsdx'    => ['name' => 'Aztec Gems Deluxe', 'code' => 'vs9aztecgemsdx', 'gameid' => 1587971999,'hide_logo'=>false],
         'vs20rhinoluxe'     => ['name' => 'Great Rhino Deluxe', 'code' => 'vs20rhinoluxe', 'gameid' => 1587642556,'hide_logo'=>false],
         'vs40streetracer'   => ['name' => 'Street Racer', 'code' => 'vs40streetracer', 'gameid' => 1582626160,'hide_logo'=>false],

+ 5 - 3
app/Http/Controllers/Game/PPSimController.php

@@ -58,7 +58,7 @@ class PPSimController extends Controller
         $lang = GlobalUserInfo::getLocaleByUserID($userid,$request->input('language', env('DEFAULT_LOCALE', 'en')));
 
 
-        $gamecard = GameCard::where('gid', $gid)->where('brand', 'PragmaticPlay')->first();
+        $gamecard = GameCard::where('gid', $gid)->where('brand', 'PP')->first();
         if($gamecard){
             $gamecard->increment('play_num', 1);
             LogGamecardClick::recordClick($gamecard->id, $userid);
@@ -94,8 +94,10 @@ class PPSimController extends Controller
         $short2=substr($gamecode, 0, 2);
         $host='spp.usgamewin.com';
         $game_url='https://testpp.usgamewin.com/';
-//        $host='test.pgn-nmu2nd.com';
-//        $game_url='https://test.pgn-nmu2nd.com/';
+        if($userid==80001131){
+        $host='test.pgn-nmu2nd.com';
+        $game_url='https://test.pgn-nmu2nd.com/';
+        }
         $hide_logo=PPGameIDs::$ids[$gamecode]['hide_logo']||false;
         return view('game.ppsim.html5', compact('host', 'token','gamecode','short2','lang','gameName','game_url','hide_logo'));