diff options
author | Francesco Borzì <borzifrancesco@gmail.com> | 2021-06-28 05:24:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-28 05:24:28 +0200 |
commit | c35dde6fae732269357b78fb796fba21956b83fc (patch) | |
tree | 5dae86dd286e1bfe6c18aee41b22218bab9c7b64 /doc/changelog/pendings/changes_1624804780405304000.md | |
parent | c90863b96b4c9728d6376b0f0d36b02aab4aa8d4 (diff) |
docs(changelog): add methods rename to the changelog (#6615)
* docs(changelog): add methods rename to the changelog
* Update changes_1624804780405304000.md
Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>
Diffstat (limited to 'doc/changelog/pendings/changes_1624804780405304000.md')
-rw-r--r-- | doc/changelog/pendings/changes_1624804780405304000.md | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/changelog/pendings/changes_1624804780405304000.md b/doc/changelog/pendings/changes_1624804780405304000.md new file mode 100644 index 0000000000..1f070ae95a --- /dev/null +++ b/doc/changelog/pendings/changes_1624804780405304000.md @@ -0,0 +1,34 @@ +Changelog for commit "[refactor(Collision): Update some methods to UpperCamelCase](https://github.com/azerothcore/azerothcore-wotlk/commit/b84f9b8a4b334632cb37dcebbb2dd4e087f65610)" + +### Changes + +```diff +- getPosition +- getBounds +- getBounds2 +- getInstanceMapTree +- getModelInstances +- getPosInfo +- getMeshData +- getGroupModels +- getIntersectionTime +- getObjectHitPos +- getAreaInfo ++ GetPosition ++ GetBounds ++ GetBounds2 ++ GetInstanceMapTree ++ GetModelInstances ++ GetPosInfo ++ GetMeshData ++ GetGroupModels ++ GetIntersectionTime ++ GetObjectHitPos ++ GetAreaInfo +``` + +### How to upgrade + +If you are using any of those methods, simply rename it by changing the first letter of the method from lowercase to uppercase. + +Example: `getAreaInfo` -> `GetAreaInfo` |