Moved assets outside of main project to avoid duplication and other fixes
This commit is contained in:
@@ -154,7 +154,7 @@ public class InventoryController(
|
||||
_logger.Success($"Set trader {mailEvent.Entity}: Standing to: {mailEvent.Value}");
|
||||
break;
|
||||
case ProfileChangeEventType.ProfileLevel:
|
||||
pmcData.Info.Experience = mailEvent.Value.Value;
|
||||
pmcData.Info.Experience = (int) mailEvent.Value.Value;
|
||||
// Will calculate level below
|
||||
_traderHelper.ValidateTraderStandingsAndPlayerLevelForProfile(sessionId);
|
||||
_logger.Success($"Set profile xp to: {mailEvent.Value}");
|
||||
|
||||
@@ -93,7 +93,7 @@ public record ProfileChangeEvent
|
||||
public ProfileChangeEventType? Type { get; set; }
|
||||
|
||||
[JsonPropertyName("value")]
|
||||
public int? Value { get; set; }
|
||||
public double? Value { get; set; }
|
||||
|
||||
[JsonPropertyName("entity")]
|
||||
public string? Entity { get; set; }
|
||||
|
||||
@@ -154,7 +154,7 @@ public class DatabaseImporter : OnLoad
|
||||
|
||||
var validation = valid == ValidationResult.FAILED || valid == ValidationResult.NOT_FOUND ? "." : "";
|
||||
_logger.Info($"{_localisationService.GetText("importing_database_finish")}{validation}");
|
||||
_databaseServer.SetTables((DatabaseTables)dataToImport);
|
||||
_databaseServer.SetTables(dataToImport);
|
||||
}
|
||||
|
||||
protected void OnReadValidate(string fileWithPath, string data)
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user