-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:azerothcore/mod-quest-status
- Loading branch information
Showing
13 changed files
with
238 additions
and
246 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
title: "Feature: " | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for taking your time to fill out a feature request. Remember to fill out all fields including the title above. | ||
An issue that is not properly filled out will be closed. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe your feature request or suggestion in detail | ||
description: | | ||
A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Describe a possible solution to your feature or suggestion in detail | ||
description: | | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional context | ||
description: | | ||
Add any other context or screenshots about the feature request here. | ||
validations: | ||
required: false |
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 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,3 +1,11 @@ | ||
[2024-03-28] | ||
- Update the module to the latest version of the emulator. | ||
- Modify the way you write commands. | ||
- Add suggestion templates. | ||
- Add pull request template | ||
- Modify file names | ||
- Add header to better organize the methods. | ||
|
||
[2022-06-29] | ||
- I update the emulator to work with the latest AzerothCore api. | ||
- An issue template is added, to report bugs. |
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,8 +1,8 @@ | ||
[worldserver] | ||
|
||
# | ||
# Enable Announces that the module is activated or deactivated. | ||
# default: true | ||
# Enable Announces that the module is activated or deactivated. | ||
# Default: true | ||
# | ||
|
||
AnnouncePlayer.enable=true | ||
AnnouncePlayer.enable = true |
1 change: 0 additions & 1 deletion
1
data/sql/db-world/base/command.sql → data/sql/db-world/base/qs_command.sql
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,4 +1,3 @@ | ||
|
||
DELETE FROM `command` WHERE `name`='qs'; | ||
|
||
INSERT INTO `command` (`name`, `security`, `help`) VALUES | ||
|
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,10 +0,0 @@ | ||
#!/usr/bin/env bash | ||
|
||
## GETS THE CURRENT MODULE ROOT DIRECTORY | ||
MOD_QUEST_STATUS_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )/" && pwd )" | ||
|
||
source $MOD_QUEST_STATUS_ROOT"/conf/conf.sh.dist" | ||
|
||
if [ -f $MOD_QUEST_STATUS_ROOT"/conf/conf.sh" ]; then | ||
source $MOD_QUEST_STATUS_ROOT"/conf/conf.sh" | ||
fi | ||
Oops, something went wrong.