mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-03 04:16:19 -04:00
Some more skillMod improvements
This commit is contained in:
@@ -109,6 +109,10 @@ public class SkillModService implements INetworkDispatch {
|
||||
return creature.getSkillModValue(name, divisor);
|
||||
}
|
||||
|
||||
public void deductSkillMod(CreatureObject creature, String name, SkillMod skillMod) {
|
||||
deductSkillMod(creature, name, skillMod.getBase(), skillMod.getModifier());
|
||||
}
|
||||
|
||||
public void deductSkillMod(CreatureObject creature, String name, int base) {
|
||||
deductSkillMod(creature, name, base, 0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user