diff --git a/.vitepress/config.mts b/.vitepress/config.mts index b97a067..99d7b8f 100644 --- a/.vitepress/config.mts +++ b/.vitepress/config.mts @@ -43,9 +43,9 @@ export default defineConfig({ text: 'Reverse Engineering', collapsed: true, items: [ - {text: 'Introduction', link:'/reverse-engineering/introduction'}, - {text: 'Using IDA', link: '/reverse-engineering/using-ida'}, - {text: 'Microsoft STL', link: '/reverse-engineering/microsoft-stl'} + { text: 'Introduction', link: '/reverse-engineering/introduction' }, + { text: 'Using IDA', link: '/reverse-engineering/using-ida' }, + { text: 'Microsoft STL', link: '/reverse-engineering/microsoft-stl' } ] }, { @@ -60,12 +60,13 @@ export default defineConfig({ text: 'Entities', collapsed: true, items: [ - {text: 'EnTT', link:'/entities/entt'}, + { text: 'EnTT', link: '/entities/entt' } ] } ], socialLinks: [ - { icon: 'github', link: 'https://github.com/bedrock-native-modding/wiki' } + { icon: 'github', link: 'https://github.com/bedrock-native-modding/wiki' }, + { icon: 'discord', link: 'https://discord.gg/eJXZbQkwnz' } ], search: { provider: 'local' diff --git a/wiki/entities/entt.md b/wiki/entities/entt.md index 0343700..f47a91b 100644 --- a/wiki/entities/entt.md +++ b/wiki/entities/entt.md @@ -42,7 +42,7 @@ include(FetchContent) FetchContent_Declare( EnTT GIT_REPOSITORY https://github.com/skypjack/entt.git - GIT_TAG 2909e7ab1f1e73a36f778319070695611e3fa47b # v3.13.1 + GIT_TAG fe8d7d78c4823e8a66a050bf86f5c6318cf76ce7 # Minecraft 1.21.90+ ) FetchContent_MakeAvailable(EnTT) @@ -52,7 +52,7 @@ target_link_libraries(MyTarget PRIVATE EnTT::EnTT) Or, if you have a CMake project using CPM ([setup](/beginners-guide/your-first-hook#cpm)): ```CMake -CPMAddPackage("gh:skypjack/entt@v3.13.1") +CPMAddPackage("gh:skypjack/entt#fe8d7d78c4823e8a66a050bf86f5c6318cf76ce7") ``` Or, if a package repository is configured in your environment, `find_package` can be used as a less verbose