diff --git a/app/Console/Commands/MiningTaxes/MiningTaxesLedgers.php b/app/Console/Commands/MiningTaxes/MiningTaxesLedgers.php index a6de92285..75ed8d3ce 100644 --- a/app/Console/Commands/MiningTaxes/MiningTaxesLedgers.php +++ b/app/Console/Commands/MiningTaxes/MiningTaxesLedgers.php @@ -103,7 +103,7 @@ class MiningTaxesLedgers extends Command $typeName = $lookup->ItemIdToName($ledger->type_id); //Decode the date and store it. //$updated = $esiHelper->DecodeDate($ledger->last_updated); - dd($ledger); + $price = $mHelper->CalculateOrePrice($ledger->type_id); $amount = $price * $ledger->quantity; diff --git a/app/Library/Moons/MoonCalc.php b/app/Library/Moons/MoonCalc.php index 8cc0e1893..088730fb0 100644 --- a/app/Library/Moons/MoonCalc.php +++ b/app/Library/Moons/MoonCalc.php @@ -241,7 +241,7 @@ class MoonCalc { //Get the name through the lookup table $oreName = $lookupHelper->ItemIdToName($oreId); - + dd($oreName); //Strip the prefix from the ore name if it has one. //Then change the ore id if necessary $tempName = explode(' ', $oreName);