From 8fbc6698d7808ae1392e04d7ee4819c47e068895 Mon Sep 17 00:00:00 2001 From: hkr3d2 <151843832+hkr3d2@users.noreply.github.com> Date: Mon, 4 May 2026 17:49:42 +0200 Subject: [PATCH] Update Geometrydash.bro link --- handbook/vol1/chap1_6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handbook/vol1/chap1_6.md b/handbook/vol1/chap1_6.md index 7dd39297..9ccae60c 100644 --- a/handbook/vol1/chap1_6.md +++ b/handbook/vol1/chap1_6.md @@ -137,7 +137,7 @@ class $modify(MenuLayer) { That's it. As previously stated, this is [quite close to the standard node design pattern](#the-structure-of-a-node). -> :warning: It should be noted that not all layer's `init` functions have the same signature, and `$modify` requires the signature to **exactly match** in order to create a hook. Unfortunately, due to implementation problems, it also (currently) doesn't tell you if your signature is wrong, so you may find yourself scratching your head as to why your mod isn't working, only to realize the signature of `init` is off. Check [GeometryDash.bro](https://github.com/geode-sdk/bindings/blob/main/bindings/2.2074/GeometryDash.bro) to make sure the signature of your hook is correct! +> :warning: It should be noted that not all layer's `init` functions have the same signature, and `$modify` requires the signature to **exactly match** in order to create a hook. Unfortunately, due to implementation problems, it also (currently) doesn't tell you if your signature is wrong, so you may find yourself scratching your head as to why your mod isn't working, only to realize the signature of `init` is off. Check [GeometryDash.bro](https://github.com/geode-sdk/bindings/blob/main/bindings/2.2081/GeometryDash.bro) to make sure the signature of your hook is correct! Now we are at an interesting point; we know how to hook functions, we know what function from a layer to hook in order to modify it, and we know how to work with nodes. So, let's tie all of this together! Only 7 chapters in, [it's time for **Hello, World!**](/handbook/vol1/chap1_7.md)