From 8a63a4558d082fa3b23ee71a455cb0059b2c69ca Mon Sep 17 00:00:00 2001 From: RobotFK <31999284+RobotFK@users.noreply.github.com> Date: Thu, 27 Jul 2023 11:17:03 +0200 Subject: [PATCH] Fixed a link in making-a-mod.md The link lead to an invalid path. Now it correctly links to /docs/!general-info.me --- docs/tutorials/making-a-mod.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/making-a-mod.md b/docs/tutorials/making-a-mod.md index d8548ff..2443524 100644 --- a/docs/tutorials/making-a-mod.md +++ b/docs/tutorials/making-a-mod.md @@ -52,7 +52,7 @@ Reload the page, and an upgrade will appear in the layer's tab! It will just be Reload the page, and the upgrade will appear, fully formed! But it won't have any effect when you buy it! To impliment a boost, we need to go to the place where it is calculated. In this case, point gain is calculated in getPointGen in mod.js, so let's head over there. -It's time to explain Decimals. Decimals are a special way of handling numbers over the normal Javascript limit. They are handled in a very different way. To perform any operations, instead of doing x = x + y, you have to do x = x.add(y). x has to be a Decimal, but y can be either a Decimal or Number (regular javascript number). A more detailed description is in [!general-info.md](/documentation/!general-info.md) +It's time to explain Decimals. Decimals are a special way of handling numbers over the normal Javascript limit. They are handled in a very different way. To perform any operations, instead of doing x = x + y, you have to do x = x.add(y). x has to be a Decimal, but y can be either a Decimal or Number (regular javascript number). A more detailed description is in [!general-info.md](/docs/!general-info.md) With that knowledge in hand, what we need to do is check if the player has the upgrade, and then boost point gain if so. We can do that by inserting this line between gain being defined and returned: ```js