mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-23 22:52:29 +01:00
Merge branch 'dev' of https://github.com/danielyxie/bitburner into dev
This commit is contained in:
commit
b18b6cf380
@ -358,7 +358,7 @@ function Skill(params={name:"foo", desc:"foo"}) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Skill.prototype.calculateCost = function(currentLevel) {
|
Skill.prototype.calculateCost = function(currentLevel) {
|
||||||
return (this.baseCost + (currentLevel * this.costInc)) * BitNodeMultipliers.BladeburnerSkillCost;
|
return Math.floor((this.baseCost + (currentLevel * this.costInc)) * BitNodeMultipliers.BladeburnerSkillCost);
|
||||||
}
|
}
|
||||||
var Skills = {};
|
var Skills = {};
|
||||||
var SkillNames = {
|
var SkillNames = {
|
||||||
|
Loading…
Reference in New Issue
Block a user