Misc: Update Readme

This commit is contained in:
Kargatum
2019-01-24 07:20:28 +07:00
committed by GitHub
parent 19d768a704
commit 4a34d00874

View File

@@ -11,7 +11,7 @@ If using this module with an AzerothCore commit older than
https://github.com/azerothcore/azerothcore-wotlk/commit/b34bc28e5b02514fca3519beac420c58faa89cad https://github.com/azerothcore/azerothcore-wotlk/commit/b34bc28e5b02514fca3519beac420c58faa89cad
please delete the IDs 50000 and 50001 from npc_text before upgrading AzerothCore: please delete the IDs 50000 and 50001 from npc_text before upgrading AzerothCore:
``` ```sql
DELETE FROM `npc_text` WHERE `ID` IN (50000,50001); DELETE FROM `npc_text` WHERE `ID` IN (50000,50001);
``` ```
Otherwise there will be conflicts for these IDs. The module will now use IDs 500000 and 500001 as default. Otherwise there will be conflicts for these IDs. The module will now use IDs 500000 and 500001 as default.
@@ -24,17 +24,18 @@ AzerothCore v1.0.2+
## How to install ## How to install
###1) Simply place the module under the `modules` folder of your AzerothCore source folder. ### 1) Simply place the module under the `modules` folder of your AzerothCore source folder.
You can do clone it via git under the azerothcore/modules directory: You can do clone it via git under the azerothcore/modules directory:
`cd path/to/azerothcore/modules` ```sh
cd path/to/azerothcore/modules
`git clone https://github.com/azerothcore/mod-transmog.git` git clone https://github.com/azerothcore/mod-transmog.git
```
or you can manually [download the module](https://github.com/azerothcore/mod-transmog/archive/master.zip), unzip the Transmog folder and place it under the `azerothcore/modules` directory. or you can manually [download the module](https://github.com/azerothcore/mod-transmog/archive/master.zip), unzip the Transmog folder and place it under the `azerothcore/modules` directory.
###2) Re-run cmake and launch a clean build of AzerothCore ### 2) Re-run cmake and launch a clean build of AzerothCore
**That's it.** **That's it.**