Species free innate skill (#1277)

* innate free job skills

* returns species magic buff + unlock all skill

* Update tiefling.yml

* fix
This commit is contained in:
Ed
2025-05-18 00:37:04 +03:00
committed by GitHub
parent 5cd70ae1e9
commit 0274826e32
19 changed files with 127 additions and 125 deletions

View File

@@ -97,14 +97,9 @@ public abstract class SharedStationSpawningSystem : EntitySystem
private void CP14EquipStartingActions(EntityUid entity, LoadoutPrototype loadout)
{
foreach (var action in loadout.Actions)
{
_action.AddAction(entity, action);
}
foreach (var skill in loadout.Skills)
{
_skill.TryAddSkill(entity, skill);
_skill.TryAddSkill(entity, skill, free: true);
}
}