updated gitignore to include modules

This commit is contained in:
mikx
2023-11-07 18:17:57 -05:00
parent 749adf47ca
commit bde1978585
429 changed files with 104850 additions and 6 deletions

View File

@@ -0,0 +1,32 @@
#!/usr/bin/env bash
## CUSTOM SQL - Important file used by the db_assembler.sh
## Keep only the required variables (base sql files or updates, depending on the DB)
## BASE SQL
DB_AUTH_CUSTOM_PATHS+=(
$MOD_NO_HEARTHSTONE_COOLDOWN_ROOT"/sql/auth/base/"
)
DB_CHARACTERS_CUSTOM_PATHS+=(
$MOD_NO_HEARTHSTONE_COOLDOWN_ROOT"/sql/characters/base/"
)
DB_WORLD_CUSTOM_PATHS+=(
$MOD_NO_HEARTHSTONE_COOLDOWN_ROOT"/sql/world/base/"
)
## UPDATES
DB_AUTH_UPDATES_PATHS+=(
$MOD_NO_HEARTHSTONE_COOLDOWN_ROOT"/sql/auth/updates/"
)
DB_CHARACTERS_UPDATES_PATHS+=(
$MOD_NO_HEARTHSTONE_COOLDOWN_ROOT"/sql/characters/updates/"
)
DB_WORLD_UPDATES_PATHS+=(
$MOD_NO_HEARTHSTONE_COOLDOWN_ROOT"/sql/world/updates/"
)

View File

@@ -0,0 +1,24 @@
#
# Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
#
[worldserver]
#####################################################
# No Hearthstone cooldown module configuration
#####################################################
#
# NoHearthstoneCooldownConfig.Enable
# Description: Enable to skip the Hearthstone cooldown
# Default: 1 - Enabled
# 0 - Disabled
#
# NoHearthstoneCooldownConfig.Announce
# Description: Inform the player about the loaded module
# Default: 1 - Enabled
# 0 - Disabled
#
NoHearthstoneCooldown.Enable = 1
NoHearthstoneCooldown.Announce = 1