Skip to content

Commit 7540918

Browse files
author
Jeff Tasinbro
authored
fix: text output formatting due to core change
- Fixes module output text formatting due to core change. <!-- If your fix has a relating issue, link it below --> - Closes 48 <!-- If you can, include a source that can strengthen your claim --> #48 (comment) <!-- Does it build without errors? Did you test in-game? What did you test? On which OS did you test? Describe any other tests performed --> - Recompiled - Tested various dungeons at, below, and above my characters level - Noted proper output <!-- Describe in a detailed step-by-step order how to test the changes --> 1.create a level 40 character 2.visit low, mid and high level dungeons 3.verify proper output
1 parent 09c192e commit 7540918

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Solocraft.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -648,19 +648,19 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
648648
// Announce to player - Buff
649649
if (!SolocraftXPEnabled)
650650
{
651-
ss << "|cffFF0000[SoloCraft] |cffFF8000" << player->GetName() << " entered %s - Difficulty Offset: %0.2f. Spellpower Bonus: %i. Class Balance Weight: %i. XP Gain: |cffFF0000Disabled";
651+
ss << "|cffFF0000[SoloCraft] |cffFF8000" << player->GetName() << " entered {} - Difficulty Offset: {:.2f}. Spellpower Bonus: {}. Class Balance Weight: {}. XP Gain: |cffFF0000Disabled";
652652
ChatHandler(player->GetSession()).PSendSysMessage(ss.str().c_str(), map->GetMapName(), difficulty, SpellPowerBonus, classBalance);
653653
}
654654
else
655655
{
656656
if (!SolocraftXPBalEnabled)
657657
{
658-
ss << "|cffFF0000[SoloCraft] |cffFF8000" << player->GetName() << " entered %s - Difficulty Offset: %0.2f. Spellpower Bonus: %i. Class Balance Weight: %i. XP Balancing: |cffFF0000Disabled";
658+
ss << "|cffFF0000[SoloCraft] |cffFF8000" << player->GetName() << " entered {} - Difficulty Offset: {:.2f}. Spellpower Bonus: {}. Class Balance Weight: {}. XP Balancing: |cffFF0000Disabled";
659659
ChatHandler(player->GetSession()).PSendSysMessage(ss.str().c_str(), map->GetMapName(), difficulty, SpellPowerBonus, classBalance);
660660
}
661661
else
662662
{
663-
ss << "|cffFF0000[SoloCraft] |cffFF8000" << player->GetName() << " entered %s - Difficulty Offset: %0.2f. Spellpower Bonus: %i. Class Balance Weight: %i. XP Balancing: |cff4CFF00Enabled";
663+
ss << "|cffFF0000[SoloCraft] |cffFF8000" << player->GetName() << " entered {} - Difficulty Offset: {:.2f}. Spellpower Bonus: {}. Class Balance Weight: {}. XP Balancing: |cff4CFF00Enabled";
664664
ChatHandler(player->GetSession()).PSendSysMessage(ss.str().c_str(), map->GetMapName(), difficulty, SpellPowerBonus, classBalance);
665665
}
666666
}
@@ -670,12 +670,12 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
670670
// Announce to player - Debuff
671671
if (!SolocraftXPBalEnabled && SolocraftXPEnabled)
672672
{
673-
ss << "|cffFF0000[SoloCraft] |cffFF8000" << player->GetName() << " entered %s - |cffFF0000BE ADVISED - You have been debuffed by offset: %0.2f with a Class Balance Weight: %i. |cffFF8000 A group member already inside has the dungeon's full buff offset. No Spellpower buff will be applied to spell casters. ALL group members must exit the dungeon and re-enter to receive a balanced offset.";
673+
ss << "|cffFF0000[SoloCraft] |cffFF8000" << player->GetName() << " entered {} - |cffFF0000BE ADVISED - You have been debuffed by offset: {:.2f} with a Class Balance Weight: {}. |cffFF8000 A group member already inside has the dungeon's full buff offset. No Spellpower buff will be applied to spell casters. ALL group members must exit the dungeon and re-enter to receive a balanced offset.";
674674
ChatHandler(player->GetSession()).PSendSysMessage(ss.str().c_str(), map->GetMapName(), difficulty, classBalance);
675675
}
676676
else
677677
{
678-
ss << "|cffFF0000[SoloCraft] |cffFF8000" << player->GetName() << " entered %s - |cffFF0000BE ADVISED - You have been debuffed by offset: %0.2f with a Class Balance Weight: %i and no XP will be awarded. |cffFF8000 A group member already inside has the dungeon's full buff offset. No Spellpower buff will be applied to spell casters. ALL group members must exit the dungeon and re-enter to receive a balanced offset.";
678+
ss << "|cffFF0000[SoloCraft] |cffFF8000" << player->GetName() << " entered {} - |cffFF0000BE ADVISED - You have been debuffed by offset: {:.2f} with a Class Balance Weight: {} and no XP will be awarded. |cffFF8000 A group member already inside has the dungeon's full buff offset. No Spellpower buff will be applied to spell casters. ALL group members must exit the dungeon and re-enter to receive a balanced offset.";
679679
ChatHandler(player->GetSession()).PSendSysMessage(ss.str().c_str(), map->GetMapName(), difficulty, classBalance);
680680
}
681681
}
@@ -686,7 +686,7 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
686686
else
687687
{
688688
// Announce to player - Over Max Level Threshold
689-
ss << "|cffFF0000[SoloCraft] |cffFF8000" << player->GetName() << " entered %s - |cffFF0000You have not been buffed. |cffFF8000 Your level is higher than the max level (%i) threshold for this dungeon.";
689+
ss << "|cffFF0000[SoloCraft] |cffFF8000" << player->GetName() << " entered {} - |cffFF0000You have not been buffed. |cffFF8000 Your level is higher than the max level ({}) threshold for this dungeon.";
690690
ChatHandler(player->GetSession()).PSendSysMessage(ss.str().c_str(), map->GetMapName(), dunLevel + SolocraftLevelDiff);
691691
ClearBuffs(player); // Check to revert player back to normal
692692
}

0 commit comments

Comments
 (0)