Skip to content

Commit

Permalink
comment out logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Zireael07 committed Mar 7, 2016
1 parent 11905cb commit cb9c6e0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions class/Actor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2324,11 +2324,12 @@ function _M:levelClass(name)

if d.getSkillPoints(self, d) then
local count = (d.getSkillPoints(self, d) + self:getIntMod())
game.logPlayer(self, "Class skill points "..d.getSkillPoints(self, d).." Int mod "..self:getIntMod())
-- game.logPlayer(self, "Class skill points "..d.getSkillPoints(self, d).." Int mod "..self:getIntMod())
local skill_point = math.max(1, count)
game.logPlayer(self, "Skill point "..skill_point)
-- game.logPlayer(self, "Skill point "..skill_point)
if self.level == 1 then skill_point = skill_point * 4
game.logPlayer(self, "Post-mult: "..skill_point) end
-- game.logPlayer(self, "Post-mult: "..skill_point)
end
self:attr('skill_point', skill_point)
end

Expand Down

0 comments on commit cb9c6e0

Please sign in to comment.