update moon issue

This commit is contained in:
2020-02-02 12:50:18 -06:00
parent bcafa912f0
commit fa839e6046

View File

@@ -234,6 +234,8 @@ class MoonsAdminController extends Controller
$mn = $str_array[2]; $mn = $str_array[2];
$name = $str_array[3]; $name = $str_array[3];
dd($request->contact);
//Take the contact name and create a character_id from it //Take the contact name and create a character_id from it
if($request->contact == 'None') { if($request->contact == 'None') {
$contact = -1; $contact = -1;
@@ -241,8 +243,6 @@ class MoonsAdminController extends Controller
$contact = $lookup->CharacterNameToId($request->contact); $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. //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 //Let's find the corporation and alliance information to ascertain whethery they are in Warped Intentions or another Legacy Alliance
$char = $lookup->GetCharacterInfo($contact); $char = $lookup->GetCharacterInfo($contact);