Skip to content

Commit

Permalink
#1618 Fixed group assignment when exporting mdt mapping v2
Browse files Browse the repository at this point in the history
  • Loading branch information
Wotuu committed Apr 5, 2023
1 parent 273334d commit 75e42ac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/Service/MDT/MDTMappingExportService.php
Expand Up @@ -182,11 +182,11 @@ private function getDungeonEnemies(MappingVersion $mappingVersion, Collection $t
$npc = $npcs->get($npcId);

$scaleMapping = [
NpcClassification::NPC_CLASSIFICATION_NORMAL => 0.8,
NpcClassification::NPC_CLASSIFICATION_ELITE => 0.8,
NpcClassification::NPC_CLASSIFICATION_BOSS => 1.2,
NpcClassification::NPC_CLASSIFICATION_FINAL_BOSS => 1.2,
NpcClassification::NPC_CLASSIFICATION_RARE => 1.2,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_NORMAL] => 0.8,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_ELITE] => 0.8,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_BOSS] => 1.2,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_FINAL_BOSS] => 1.2,
NpcClassification::ALL[NpcClassification::NPC_CLASSIFICATION_RARE] => 1.2,
];

$dungeonEnemy = [
Expand Down

0 comments on commit 75e42ac

Please sign in to comment.