I am trying to use OWLTR for my server but I am stuck with these errors

Errors:
+ Custom/OWLTR/MasterStorage/MasterStorageUtils.cs:
CS0029: Line 361: Cannot implicitly convert type 'Server.Items.IQuality' to 'Server.Items.ItemQuality'
+ Custom/OWLTR/MasterStorage/MasterStorage.cs:
CS0030: Line 1495: Cannot convert type 'Server.Items.IQuality' to 'int'
CS0030: Line 1507: Cannot convert type 'int' to 'Server.Items.IQuality'
CS1503: Line 1422: Argument 3: cannot convert from 'Server.Items.ItemQuality' to 'Server.Items.IQuality'
Scripts: One or more scripts failed to compile or no script files were found.

Somehow masterstora and utils change the BaseInstrument Quality to a variable and its having a problem when serializing and deserializing
I used convertto types even but couldnt make it work,
Any help is appreciated.
 

Attachments

  • MasterStorage.cs
    41.6 KB · Views: 7
  • MasterStorageUtils.cs
    13.6 KB · Views: 7
In your masterstorage.cs change IQuality to ItemQuality. I dont remember when but it was changed, I ran into this issue when I added mine in.
 
Back