Skip to content
Snippets Groups Projects
Commit 97d7b8bb authored by dg's avatar dg
Browse files

Creatures stop giving experience if they are 7 levels below you instead of 3

git-svn-id: http://svn.net-core.org/repos/t-engine4@1735 51575b47-30f0-44d4-a5cc-537603b46e54
parent b07a571e
No related branches found
No related tags found
No related merge requests found
......@@ -1472,7 +1472,7 @@ end
-- @param target to whom is the exp rewarded
-- @return the experience rewarded
function _M:worthExp(target)
if not target.level or self.level < target.level - 3 then return 0 end
if not target.level or self.level < target.level - 7 then return 0 end
local mult = 0.3
if self.rank == 1 then mult = 0.3
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment