chore(Core): Remove unnecessary slang Cosmetic (#9325)

* Remove unnecessary slang

Removes ZOMG! that is used in the src in logging and notes. Completely Unnecessary. Contributes to nothing useful. Inflates source. Not needed at all in any shape or form. Not Developer Lingo either.

* Further Clean Up

Removed Profanity

* sensible grammar correction

* More ZOMG! removal
This commit is contained in:
acidmanifesto
2021-11-25 08:31:54 +01:00
committed by GitHub
parent 60d90aee3d
commit 29f49108a5
36 changed files with 73 additions and 74 deletions

View File

@@ -1143,7 +1143,7 @@ public:
me->CastSpell((Unit*)nullptr, SPELL_FROST_NOVA, false);
events.RepeatEvent(15000);
EventMapGCD(events, 1500);
// blink disabled, fucking movement shit not working
// blink disabled, movement not working
}
else
events.RepeatEvent(6000);

View File

@@ -369,7 +369,7 @@ public:
Player* target = myList.front();
if (me->GetVictim()->GetGUID() != _tankGUID || target->GetGUID() != _offtankGUID)
{
// remove manually from previous, single target flag has nothing to do with this shit as caster is in every case different... tc retards
// remove manually from previous, single target flag has nothing to do with this as caster is in every case different.
if (_tankGUID)
if (Player* prevTank = ObjectAccessor::GetPlayer(*me, _tankGUID))
{

View File

@@ -589,7 +589,7 @@ public:
// AIR PHASE EVENTS BELOW:
case EVENT_AIR_PHASE:
// pussywizard: unroot may be scheduled after this event cos of events shitness (time must be unique)
// pussywizard: unroot may be scheduled after this event cos of events (time must be unique)
if (me->HasUnitState(UNIT_STATE_ROOT))
{
events.CancelEvent(EVENT_UNROOT);

View File

@@ -935,7 +935,7 @@ public:
Talk(SAY_LK_REMORSELESS_WINTER);
me->GetMap()->SetZoneMusic(AREA_THE_FROZEN_THRONE, MUSIC_SPECIAL);
me->CastSpell(me, SPELL_REMORSELESS_WINTER_1, false);
//events.DelayEvents(62500, EVENT_GROUP_BERSERK); // delay berserk timer, its not ticking during phase transitions, bullshit, 15mins on movies
//events.DelayEvents(62500, EVENT_GROUP_BERSERK); // delay berserk timer, its not ticking during phase transitions, 15mins on movies
events.ScheduleEvent(EVENT_QUAKE, 62500);
events.ScheduleEvent(EVENT_PAIN_AND_SUFFERING, 3500, EVENT_GROUP_ABILITIES);
events.ScheduleEvent(EVENT_SUMMON_ICE_SPHERE, 8000, EVENT_GROUP_ABILITIES);
@@ -947,7 +947,7 @@ public:
me->GetMap()->SetZoneMusic(AREA_THE_FROZEN_THRONE, MUSIC_SPECIAL);
me->CastSpell(me, SPELL_REMORSELESS_WINTER_2, false);
summons.DespawnEntry(NPC_VALKYR_SHADOWGUARD);
//events.DelayEvents(62500, EVENT_GROUP_BERSERK); // delay berserk timer, its not ticking during phase transitions, bullshit, 15 mins on movies
//events.DelayEvents(62500, EVENT_GROUP_BERSERK); // delay berserk timer, its not ticking during phase transitions, 15 mins on movies
events.ScheduleEvent(EVENT_QUAKE_2, 62500);
events.ScheduleEvent(EVENT_PAIN_AND_SUFFERING, 3500, EVENT_GROUP_ABILITIES);
events.ScheduleEvent(EVENT_SUMMON_ICE_SPHERE, 8000, EVENT_GROUP_ABILITIES);

View File

@@ -158,7 +158,7 @@ public:
return;
me->SetInCombatWithZone();
events.ScheduleEvent(EVENT_ESSENCE_OF_SUFFERING, 5000); // ZOMG! 15000);
events.ScheduleEvent(EVENT_ESSENCE_OF_SUFFERING, 5000); // 15000);
me->SetStandState(UNIT_STAND_STATE_STAND);
}

View File

@@ -100,7 +100,7 @@ public:
case NPC_COILFANG_SHATTERER:
case NPC_COILFANG_PRIESTESS:
if (creature->GetPositionX() > -110.0f && creature->GetPositionX() < 155.0f && creature->GetPositionY() > -610.0f && creature->GetPositionY() < -280.0f)
AliveKeepersCount += creature->IsAlive() ? 0 : -1; // retarded SmartAI calls JUST_RESPAWNED in AIInit...
AliveKeepersCount += creature->IsAlive() ? 0 : -1; // SmartAI calls JUST_RESPAWNED in AIInit...
break;
case NPC_THE_LURKER_BELOW:
LurkerBelowGUID = creature->GetGUID();

View File

@@ -556,7 +556,7 @@ public:
//me->CastSpell(me, SPELL_KEAL_STUNNED, true);
break;
case EVENT_SCENE_9:
me->CastSpell(me, 52241, true); // WRONG VISUAL, ZOMG!
me->CastSpell(me, 52241, true); // WRONG VISUAL
me->CastSpell(me, 34807, true);
me->SummonCreature(NPC_WORLD_TRIGGER, me->GetPositionX(), me->GetPositionY(), me->GetPositionZ() + 15.0f, 0.0f, TEMPSUMMON_TIMED_DESPAWN, 60000);
if (Creature* trigger = me->SummonCreature(WORLD_TRIGGER, me->GetPositionX() + 5, me->GetPositionY(), me->GetPositionZ() + 15.0f, 0.0f, TEMPSUMMON_TIMED_DESPAWN, 60000))
@@ -601,7 +601,7 @@ public:
break;
case EVENT_SCENE_16:
summons.DespawnEntry(WORLD_TRIGGER);
me->RemoveAurasDueToSpell(52241); // WRONG VISUAL, ZOMG!
me->RemoveAurasDueToSpell(52241); // WRONG VISUAL
me->GetMotionMaster()->MovePoint(POINT_START_LAST_PHASE, me->GetHomePosition(), false, true);
break;
}

View File

@@ -450,7 +450,7 @@ class spell_hun_chimera_shot : public SpellScript
// Amount of one aura tick
basePoint = int32(CalculatePct(unitTarget->GetMaxPower(POWER_MANA), aurEff->GetAmount()));
int32 casterBasePoint = aurEff->GetAmount() * unitTarget->GetMaxPower(POWER_MANA) / 50; // TODO: WTF? caster uses unitTarget?
int32 casterBasePoint = aurEff->GetAmount() * unitTarget->GetMaxPower(POWER_MANA) / 50; // TODO: Caster uses unitTarget?
if (basePoint > casterBasePoint)
basePoint = casterBasePoint;
ApplyPct(basePoint, TickCount * 60);