- Added a wrapper to delete_timer so it prints out from where the invocation was done.

- Fixed some unsigned warnings.
- Fixed Splash attacks consuming 2 ammo on each attack.


git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9718 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex
2007-01-26 18:49:46 +00:00
parent 335723f839
commit d65e051707
7 changed files with 15 additions and 8 deletions

View File

@@ -183,9 +183,7 @@ int mapif_load_homunculus(int fd){
homun_pt->hunger = 0;
else if(homun_pt->hunger > 100)
homun_pt->hunger = 100;
if(homun_pt->intimacy < 0)
homun_pt->intimacy = 0;
else if(homun_pt->intimacy > 100000)
if(homun_pt->intimacy > 100000)
homun_pt->intimacy = 100000;
mysql_free_result(sql_res);