From 7d8cb2a3c7e57c852712a9b01b29c528630fbf55 Mon Sep 17 00:00:00 2001 From: Benoist <14257866+Kenzzer@users.noreply.github.com> Date: Wed, 23 Aug 2023 23:38:28 +0200 Subject: [PATCH 1/4] Fix Segment natives not being registered --- extension/natives/nextbot/path.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extension/natives/nextbot/path.cpp b/extension/natives/nextbot/path.cpp index 8bc1aaa..cb3a5dc 100644 --- a/extension/natives/nextbot/path.cpp +++ b/extension/natives/nextbot/path.cpp @@ -603,6 +603,7 @@ cell_t Destroy(IPluginContext* context, const cell_t* params) { void setup(std::vector& natives) { cursor::setup(natives); + segment::setup(natives); chase::setup(natives); follower::setup(natives); @@ -639,4 +640,4 @@ void setup(std::vector& natives) { natives.insert(natives.end(), std::begin(list), std::end(list)); } -} \ No newline at end of file +} From af6a6049e8b2ff2776b3d125702d648401a72ca7 Mon Sep 17 00:00:00 2001 From: Benoist <14257866+Kenzzer@users.noreply.github.com> Date: Thu, 24 Aug 2023 00:10:08 +0200 Subject: [PATCH 2/4] Update product.version --- product.version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product.version b/product.version index 81c871d..1cac385 100644 --- a/product.version +++ b/product.version @@ -1 +1 @@ -1.10.0 +1.11.0 From bbc18655fa82bb6f857c515fb2e6335b1180c6c7 Mon Sep 17 00:00:00 2001 From: Benoist <14257866+Kenzzer@users.noreply.github.com> Date: Thu, 24 Aug 2023 00:10:55 +0200 Subject: [PATCH 3/4] Correct update product.version --- product.version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product.version b/product.version index 1cac385..5ad2491 100644 --- a/product.version +++ b/product.version @@ -1 +1 @@ -1.11.0 +1.10.2 From c927ddbf029bf56a911efbc0ebb506731a36772d Mon Sep 17 00:00:00 2001 From: Benoist <14257866+Kenzzer@users.noreply.github.com> Date: Thu, 24 Aug 2023 00:11:59 +0200 Subject: [PATCH 4/4] Remove end line added by github