delete skill trees

This commit is contained in:
Ed
2025-05-09 01:22:02 +03:00
parent d9c2bd8e09
commit 9d7fae73c4
23 changed files with 39 additions and 601 deletions

View File

@@ -102,9 +102,9 @@ public abstract class SharedStationSpawningSystem : EntitySystem
_action.AddAction(entity, action);
}
foreach (var tree in loadout.SkillTree)
foreach (var skill in loadout.Skills)
{
_skill.TryAddExperience(entity, tree.Key, tree.Value);
_skill.TryAddSkill(entity, skill);
}
}