Shadowss / TravianZ-by-Shadow

TRY TO USE https://github.com/Shadowss/TravianZ
http://travian.shadowss.ro
18 stars 31 forks source link

Fix bug hero reset! #35

Closed gm4st3r closed 10 years ago

gm4st3r commented 10 years ago

Fix this (When you press reset, you get back 10 points.)

Templates/Build/37_hero.tpl

find line 228 and change this:

mysql_query("UPDATE " . TB_PREFIX . "hero SET points = '".(($hero_info['level']*5)+10)."' WHERE uid = '" . $session->uid . "'");

for this:

mysql_query("UPDATE " . TB_PREFIX . "hero SET points = '".(($hero_info['level']*5)+5)."' WHERE uid = '" . $session->uid . "'");

now its ok reset point hero 5

Shadowss commented 10 years ago

Done , thanks