1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2025-05-12 13:01:05 +00:00

Several minor fixes

This commit is contained in:
Harley White 2021-06-14 01:37:12 -04:00
parent 723d78395b
commit fba4bbf5e7
6 changed files with 17 additions and 11 deletions

View file

@ -1,6 +1,6 @@
# Basic layer breakdown
This is a very minimal layer with minimal features. Most things will require additional features.
This is a relatively minimal layer with few features. Most things will require additional features.
```js
addLayer("p", {
@ -25,7 +25,7 @@ addLayer("p", {
gainMult() { // Returns your multiplier to your gain of the prestige resource.
return new Decimal(1) // Factor in any bonuses multiplying gain here.
},
gainExp() { // Returns your exponent to your gain of the prestige resource.
gainExp() { // Returns the exponent to your gain of the prestige resource.
return new Decimal(1)
},

View file

@ -43,6 +43,6 @@ The benefits of using Github:
7. Finally, at the top middle, click "push origin" to push your changes out onto the online repository.
8. You can view your project on line, or share it with others, by going to https://raw.githack.com/[YOUR-GITHUB-USERNAME]/The-Modding-Tree/master/index.html. **You do NOT need to do this to test your mod locally.**
8. You can view your project online, or share it with others, by going to https://raw.githack.com/[YOUR-GITHUB-USERNAME]/The-Modding-Tree/master/index.html. **You do NOT need to do this to test your mod locally.**
And now, you have successfully used Github! You can look at the next tutorial on [making a mod](making-a-mod.md), or look at the [documentation](/documentation/!general-info.md) to see how The Modding Tree's system works and to make your mod a reality.