Skip to content

Commit

Permalink
Fix mount not initializing on BitServer class
Browse files Browse the repository at this point in the history
  • Loading branch information
Mooshua committed Aug 31, 2023
1 parent b24a38f commit e016822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/BitMod/Compatibility/BitServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace BitMod.Compatibility;

public class BitServer : GameServer<BitPlayer>, IBitObject, IMount
{
public Mount Mount { get; }
public Mount Mount { get; } = new();

public void Store<T>(T value) where T : class
=> Mount.Store(value);
Expand Down

0 comments on commit e016822

Please sign in to comment.