Commit Graph

2378 Commits

Author SHA1 Message Date
Kitzunu
85cbf146f5 fix:(DB/Item) Mechanical Greench / Wand of Holiday Cheer (#2751)
Co-authored-by: Francesco Borzì <borzifrancesco@gmail.com>
2020-04-17 17:59:48 -03:00
P-Kito
f381bd47cb feat(Core/AI): CU_SAI - set creature in combat outside of dungeon (#2878) 2020-04-17 16:29:47 +02:00
P-Kito
6a410efa36 feat(Core/AI): CU_SAI - Custom Event Options (#2881) 2020-04-17 00:40:06 +02:00
P-Kito
8aa80eef18 feat(Core/SAI): new Actions + Polar Coords System Offset Relocating (#2880) 2020-04-16 11:39:45 +02:00
Viste
1432f17c32 fix(Core/Mail): Mailhandler cleanup (#2802) 2020-04-15 12:23:30 +02:00
AzerothCoreBot
c839ce5398 Import pending SQL update file...
Referenced commit(s): 615752a288
2020-04-13 22:42:32 +00:00
Kitzunu
615752a288 fix(DB/Quest): Teron Gorefiend chaining (#2746)
* Create rev_1583860566062662900.sql

* fix last line
2020-04-14 00:39:57 +02:00
AzerothCoreBot
f7562f8d96 Import pending SQL update file...
Referenced commit(s): 7661eb2a53
2020-04-12 21:59:00 +00:00
LukasVolgger
7661eb2a53 fix(DB): The Green Hills of Stranglethorn German quest texts (#2736) 2020-04-12 23:56:25 +02:00
AzerothCoreBot
384fab39f9 Import pending SQL update file...
Referenced commit(s): 8a1eab2c23
2020-04-11 09:22:32 +00:00
Kitzunu
8a1eab2c23 fix(Core/Creature): Use proper name for wander distance (#2858)
* Change from spawndist to wander_distance

Co-Authored-By: ratkosrb <ratkosrb@users.noreply.github.com>

* fix sql error

Co-Authored-By: ratkosrb <ratkosrb@users.noreply.github.com>

* Let's see if this fixes eluna :)

* Revert "Let's see if this fixes eluna :)"

This reverts commit be675bf83fc6a02f3347ea76408152d623d374bf.

* fix indent

* Revert "fix indent"

This reverts commit f4cb3d2d9fa908445d342b6f2e6dda9d52fd4665.

* Revert "Revert "fix indent""

This reverts commit 48527cfd2f9031f95bdf6e0d7b90111a3c0dc0f2.

Co-authored-by: ratkosrb <ratkosrb@users.noreply.github.com>
2020-04-11 11:20:02 +02:00
AsunaFrostwyrm
50287c05f0 fix(CORE/locale): achievement_reward_locale should now work (#2811)
Closes #2810
2020-04-10 22:31:39 +02:00
AzerothCoreBot
9c8c5ea8ff Import pending SQL update file...
Referenced commit(s): a0498fb721
2020-04-08 23:45:58 +00:00
LukasVolgger
a0498fb721 fix(DB): Fix quest minor text errors (#2727)
Fixed a few grammar and spelling errors from various quest texts.

Co-authored-by: Endeffect93 <55922592+Endeffect93@users.noreply.github.com>
2020-04-09 01:43:26 +02:00
AzerothCoreBot
9174e1eb96 Import pending SQL update file...
Referenced commit(s): 2abde9bd23
2020-04-08 10:55:28 +00:00
Alan
2abde9bd23 fix error loot altac valley (#2726) 2020-04-08 12:52:48 +02:00
AzerothCoreBot
38dbb78e84 Import pending SQL update file...
Referenced commit(s): 2bf127bed2
2020-04-07 08:55:28 +00:00
LukasVolgger
2bf127bed2 feat(DB/lang): import German quest_request_items Texts from GTDB (Part 3/4) (#2725) 2020-04-07 10:52:50 +02:00
AzerothCoreBot
44c3bef14e Import pending SQL update file...
Referenced commit(s): f821b0c7aa
2020-04-05 17:09:02 +00:00
Kitzunu
f821b0c7aa fix(DB/Gossip): Corrupted Cat gossip #2762
- Missing gossip text fixed for this creature.

- Only "issue" is that the cat immediately transforms into tiger, but in vanilla video the cat goes to the well and then transforms into tiger
2020-04-05 19:04:36 +02:00
AzerothCoreBot
5cb1dc1017 Import pending SQL update file...
Referenced commit(s): d22251bcab
2020-04-04 15:52:57 +00:00
aleigood
d22251bcab fix(DB/creature): Add waypoint for Morin Cloudstalker (#2837) 2020-04-04 17:50:24 +02:00
Amin.MasterkinG
378cd6fe28 fix(core): "Silenced - You can only chat with GMs" spell (#2716) 2020-04-04 11:01:11 +02:00
AzerothCoreBot
397c5d916f Import pending SQL update file...
Referenced commit(s): 9d0ebcd8ea
2020-04-02 18:47:37 +00:00
Barbz
9d0ebcd8ea style(DB): battelground_template entries now commented by type (arena or bg) (#2722)
- Can be useful for people who don't know WOW by heart
- Can be used to select only arenas or only battlegrounds
- Added full name for Nagrand Arena
2020-04-02 20:45:00 +02:00
arenacraftwow
cfdbf00afe fix(Core/Hook): OnFirstLogin can now make persistent changes (#2793)
PlayerScript#OnFirstLogin was broken in that if you tried to teach the
player a spell or give an item to him that change wouldn't persist.
Meaning that the next time the Player would log in, his awarded spells
or items would be gone.

Meanwhile PlayerScript#OnLogin didn't have this behavior meaning
that the sematics of PlayerScript#OnFirstLogin and PlayerScript#OnLogin
where very different, which is unexpected.

This issue was caused by an implementation detail in Player#learnSpell
(and similiar) which behaves differently depending on
Player#isBeingLoaded phase. This code change makes its that
PlayerOnFirstLogin hook executes when Player#isBeingLoaded == false
fixing the issue.

Alternatives: The fact that Player#learnSpells and others behave
differently depending on the load phase is questionable and from my
research it seems like this impl detail is only used when giving the
player his template spells. We could add a overload to
Player#learnSpell with a flag like `isSpellTemporary` and make
the template spells loading use it. Then we would be able to remove
this implicit temporary spell mechanism when Player#isBeingLoaded
thing.  However this is a deeper change and not worth the risk.
2020-04-01 20:16:00 +02:00
Barbz
ea709de58b fix(app/db_assembler): Allow recursion with bash (#2731)
- Before that commit, the recursion with "**" stopped after the first directory
2020-03-31 23:34:20 +02:00
Stefano Borzì
19c3a70d41 feat(Core/Config): make stop time for creatures with WP movement configurable #2715 (#2829)
Original author Stoabrogga
2020-03-31 01:30:39 +02:00
AzerothCoreBot
633ef83b47 Import pending SQL update file...
Referenced commit(s): 71f98abc2c
2020-03-30 00:27:37 +00:00
LukasVolgger
71f98abc2c fix(DB/creature_formations): Thal'trak Proudtusk pathing (#2724)
Use creature_formations instead of pathing for each npc. This avoids that they get out of sync after a while or get stuck.
2020-03-30 02:08:14 +02:00
AzerothCoreBot
386ee6f162 Import pending SQL update file...
Referenced commit(s): 2fd2984cb2
2020-03-29 21:05:18 +00:00
LukasVolgger
2fd2984cb2 fix(DB/creature_formations): Moon Priestess Amara pathing (#2711) 2020-03-29 23:02:47 +02:00
AzerothCoreBot
f9f3efe0d3 Import pending SQL update file...
Referenced commit(s): ccb1d813f6
2020-03-29 01:13:01 +00:00
Kitzunu
ccb1d813f6 feat(DB/Creature): Add missing Little Adeline NPC #2747
Originally from 9ed27e7d58
2020-03-29 03:10:26 +02:00
Nefertumm
bb6047248a fix(Calendar/Packets): add additional validation when creating events (#2799) 2020-03-28 22:47:53 +01:00
AzerothCoreBot
1411336dcb Import pending SQL update file...
Referenced commit(s): 76bdbae9f4
2020-03-28 01:47:32 +00:00
LukasVolgger
76bdbae9f4 fix(DB/reputation): Sporeggar repeatable quest reputation rate (#2698)
The 2 repeatable quests of faction 970 had a wrong rate x3 instead of
x1.

Co-authored-by: Endeffect93 <55922592+Endeffect93@users.noreply.github.com>
Co-authored-by: Stoabrogga <38475780+Stoabrogga@users.noreply.github.com>
2020-03-28 02:44:50 +01:00
Nefertumm
f5e38a7f57 Fix(Core/Packets/AntiDOS): Remove from default some repetitive movement packets (#2809) 2020-03-26 21:51:10 -03:00
AzerothCoreBot
fcc81ed0a2 Import pending SQL update file...
Referenced commit(s): a21e24d746
2020-03-26 18:35:12 +00:00
LukasVolgger
a21e24d746 fix(DB): Marsh Lurker spawn position (#2697)
Creature guid 64845 had wrong coordinates in position_z

Co-authored-by: Endeffect93 <55922592+Endeffect93@users.noreply.github.com>
2020-03-26 19:32:31 +01:00
Stefano Borzì
5ef98b95c9 chore(Core/AH): Restore little comment (#2702) 2020-03-25 20:40:25 +01:00
Stefano Borzì
19144d8bff fix(Core/Pet): Pet chase range check for melee ranged spells (#2694)
Co-authored-by: Stoabrogga <38475780+Stoabrogga@users.noreply.github.com>
2020-03-25 17:34:04 +01:00
Viste
fa57954ff9 fix(DB): error on default MySQL install (#2776) 2020-03-24 23:06:53 +01:00
AzerothCoreBot
cfcd81ff5d Import pending SQL update file...
Referenced commit(s): 566f86b6b6
2020-03-24 18:29:08 +00:00
LukasVolgger
566f86b6b6 feat(DB/lang): Import german quest_request_items texts from GTDB (Part 2/4) (#2692)
Co-authored-by: Endeffect93 <55922592+Endeffect93@users.noreply.github.com>
Co-authored-by: Stoabrogga <38475780+Stoabrogga@users.noreply.github.com>
2020-03-24 19:26:26 +01:00
Nefertumm
b868f0ad04 Revert "Fix(Core/Gameobjects): non-consumable goobers no longer despawn on use (#2750)" (#2797)
This is causing troubles with veins and bg gameobjects (those are known)
This reverts commit 0521a314b5.
2020-03-24 03:44:40 -03:00
Nefertumm
846f7862d8 feat(Core/Packet): Implement AntiDOS protection from Trinity (#2789)
* Implement AntiDOS protection from Trinity


Co-authored-by: jackpoz <giacomopoz@gmail.com>
Co-authored-by: Shauren <shauren.trinity@gmail.com>
Co-authored-by: Vincent-Michael <trinity.michael_vincent@gmx.eu>
2020-03-23 15:46:00 -03:00
Kitzunu
c5a7497f4d fix(Core/Gossip): fix titles in quest reward being able to show in gossip (#2791)
Co-Authored-By: Wyrserth <wyrserth@users.noreply.github.com>
2020-03-23 23:40:15 +07:00
AzerothCoreBot
5b093d3a67 Import pending SQL update file...
Referenced commit(s): 49424be66e
2020-03-22 21:46:57 +00:00
LukasVolgger
49424be66e fix(DB/creature): Remove duplicates Cenarion Stormcrow (#2708)
The 2 creatures with guid 84366, 84368 are wrong and will be removed.

Co-authored-by: Endeffect93 <55922592+Endeffect93@users.noreply.github.com>
2020-03-22 22:44:16 +01:00