Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Changelog

0.9.20
0.9.20:
- Compatible with game version 0.10.34.28392
- @gabrielgad: Sync Planet Memo
- @gabrielgad: Sync Holo Beacon (marker)
Expand Down
1 change: 1 addition & 0 deletions NebulaModel/DataStructures/Chat/ChatEnum.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
namespace NebulaModel.DataStructures.Chat;

public enum ChatViewMode
{
TMPro,
Expand Down
2 changes: 1 addition & 1 deletion NebulaPatcher/Patches/Dynamic/Player_Patch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static bool ExchangeSand_Prefix(Player __instance)

[HarmonyPrefix]
[HarmonyPatch(nameof(Player.SetSandCount))]
public static bool SetSandCount_Prefix(long newSandCount, ESandSource sandSource)
public static bool SetSandCount_Prefix(long newSandCount)
{
if (!Multiplayer.IsActive)
{
Expand Down