From fa839e60468cb8d6cc589dab17c83c6e1b804dec Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 2 Feb 2020 12:50:18 -0600 Subject: [PATCH] update moon issue --- app/Http/Controllers/Moons/MoonsAdminController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/Moons/MoonsAdminController.php b/app/Http/Controllers/Moons/MoonsAdminController.php index 35d4bccf5..c5b9467fb 100644 --- a/app/Http/Controllers/Moons/MoonsAdminController.php +++ b/app/Http/Controllers/Moons/MoonsAdminController.php @@ -234,6 +234,8 @@ class MoonsAdminController extends Controller $mn = $str_array[2]; $name = $str_array[3]; + dd($request->contact); + //Take the contact name and create a character_id from it if($request->contact == 'None') { $contact = -1; @@ -241,8 +243,6 @@ class MoonsAdminController extends Controller $contact = $lookup->CharacterNameToId($request->contact); } - dd($contact); - //After we get the contact, from his name to the character Id, let's do some other functions before continuing. //Let's find the corporation and alliance information to ascertain whethery they are in Warped Intentions or another Legacy Alliance $char = $lookup->GetCharacterInfo($contact);