Skip to content

Commit ab02cb5

Browse files
authored
Update README.md
1 parent 2e5d7fe commit ab02cb5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@
1616
3. Move contents of `GameFolder/GameName_Data/Managed` into `NetcodePatcher/deps`
1717

1818
## Preparing mods for patching
19-
To ensure that the patched NetworkBehaviours are initialized properly, add the following code snippet to your mod, in a place where it will only run once, such as `Awake()`
20-
- **It is very important that it only runs once!**
19+
- Mods must be built against .net standard 2.1 in order for this tool to work.
20+
- Make sure Debug Symbols is set to `Portable`
21+
- To ensure that the patched NetworkBehaviours are initialized properly, add the following code snippet to your mod, in a place where it will only run once, such as `Awake()`
22+
- **It is very important that it only runs once!**
2123
```cs
2224
var types = Assembly.GetExecutingAssembly().GetTypes();
2325
foreach (var type in types)

0 commit comments

Comments
 (0)