Skip to content

Commit 4115518

Browse files
committed
Changed theme and fix formatting.
1 parent b50ac8a commit 4115518

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

BuffDebuff/stepbystep.MD

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public override void Init()
223223
- `SpeedBuffEffect` is created later.
224224

225225
- Instead of using constructor or field initialization, `Init()` is called after the instance is created and injected. This is where you set up the instance.
226-
- It is guanranteed to be called before any `Update()` happens, including after the game is loaded and the values are loaded from the save if relevant.
226+
- It is guaranteed to be called before any `Update()` happens, including after the game is loaded and the values are loaded from the save if relevant.
227227

228228
- In this `BuffInstance` since we only have one Effect of a known type, we add the `Effect` property so we can easily access it later without iterating through the Effects.
229229

@@ -493,7 +493,7 @@ You can add a property to determine if an initial buff is applied or not.
493493

494494
<details>
495495
<summary>Tip 2</summary>
496-
To save additional properties, you should override `LoadSingleton` and `SaveSingleton` instead of `Load` and `Save` to retain the logic of the base class.
496+
To save additional properties, you should override <code>LoadSingleton</code> and <code>SaveSingleton</code> instead of <code>Load</code> and <code>Save</code> to retain the logic of the base class.
497497

498498
> ![IMPORTANT]
499499
> You should call `base.LoadSingleton` and `base.SaveSingleton` in your override.
@@ -511,10 +511,10 @@ You can see the solution in the [`NegativeBuff.cs`](https://github.com/datvm/Tim
511511

512512
<details>
513513
<summary>Tip 1</summary>
514-
You can just reuse `SpeedBuffEffect` for this buff as well, just with a negative value. This way you don't even need to create any new processing logic.
514+
You can just reuse <code>SpeedBuffEffect</code> for this buff as well, just with a negative value. This way you don't even need to create any new processing logic.
515515
</details>
516516

517517
<details>
518518
<summary>Tip 2</summary>
519-
If you don't see the buff, make sure you have the `NegativeBuff` registered in the mod configuration.
519+
If you don't see the buff, make sure you have the <code>NegativeBuff</code> registered in the mod configuration.
520520
</details>

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
remote_theme: pages-themes/tactile@v0.2.0
1+
remote_theme: pages-themes/cayman@v0.2.0
22
plugins:
33
- jekyll-remote-theme
44
title: Luke's Timberborn Mods

0 commit comments

Comments
 (0)