I've been checking though stuff, and noticed that there are changes in the new code base shown by Obsolete attributes.
Here is what I have found so far.
[Obsolete("IMyInventoryOwner interface and MyInventoryOwnerTypeEnum enum is obsolete. Use type checking and inventory methods on MyEntity.")]public interface IMyInventoryOwner
This means changing the inventory commands. There is obviously a replacement.
[Obsolete("Client saving not supported anymore")]bool ClientCanSave { get; }
This means, local save will no longer work from servers.
I've been checking though stuff, and noticed that there are changes in the new code base shown by Obsolete attributes. Here is what I have found so far.
[Obsolete("IMyInventoryOwner interface and MyInventoryOwnerTypeEnum enum is obsolete. Use type checking and inventory methods on MyEntity.")]
public interface IMyInventoryOwner
This means changing the inventory commands. There is obviously a replacement.[Obsolete("Client saving not supported anymore")]
bool ClientCanSave { get; }
This means, local save will no longer work from servers.