-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix crashes and make options work (#21)
* Fix crashes and make options work * Setting option Buff.MessageTimer = 0 actually disables the timed emotes and phrases now * Fix crash on setting Buff.NumWhispers = 0 (disable whispers) * Fix crash on setting Buff.NumPhrases = 0 (disable random talk) * Update npc_buffer.conf.dist * Remove InhabitType to work with latest core As per commit azerothcore-wotlk@2d4e17f InhabitType was removed from creature_template table * Replace deprecated config api, add enable/disable * Replaced deprecated config api to fix build * add enable/disable option * Update npc_buffer.conf.dist Add enable/disable option * chore. Add files and fix build --------- Co-authored-by: Pagani Walter <[email protected]>
- Loading branch information
Showing
12 changed files
with
97 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!-- First of all, THANK YOU for your contribution. --> | ||
|
||
## Changes Proposed: | ||
- | ||
- | ||
|
||
## Issues Addressed: | ||
<!-- If your fix has a relating issue, link it below --> | ||
- Closes | ||
|
||
## SOURCE: | ||
<!-- If you can, include a source that can strengthen your claim --> | ||
|
||
## Tests Performed: | ||
<!-- 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 --> | ||
- | ||
- | ||
|
||
|
||
## How to Test the Changes: | ||
<!-- Describe in a detailed step-by-step order how to test the changes --> | ||
|
||
1. | ||
2. | ||
3. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +0,0 @@ | ||
#!/usr/bin/env bash | ||
|
||
MOD_NPCBUFFER_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )/" && pwd )" | ||
|
||
source "$MOD_NPCBUFFER_ROOT/conf/conf.sh.dist" | ||
|
||
if [ -f "$MOD_NPCBUFFER_ROOT/conf/conf.sh" ]; then | ||
source "$MOD_NPCBUFFER_ROOT/conf/conf.sh" | ||
fi | ||
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
void AddNPCBufferScripts(); | ||
|
||
void Addmod_npc_bufferScripts() { | ||
void Addmod_npc_bufferScripts() | ||
{ | ||
AddNPCBufferScripts(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters