From 1937bbe4b5f6109968393c52fa7d917bdc70038b Mon Sep 17 00:00:00 2001 From: celest Date: Fri, 18 Feb 2005 14:00:56 +0000 Subject: Fixed a bug with statpoint.txt reading and giving too much stat points git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1133 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/pc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/map/pc.c') diff --git a/src/map/pc.c b/src/map/pc.c index cd2d9bb64..eac66bb97 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -7065,7 +7065,7 @@ int pc_readdb(void) // スキルツリ? memset(statp,0,sizeof(statp)); - i=0; + i=1; j=45; // base points fp=fopen("db/statpoint.txt","r"); if(fp == NULL){ @@ -7077,6 +7077,8 @@ int pc_readdb(void) continue; if ((j=atoi(line))<0) j=0; + if (i >= MAX_LEVEL) + break; statp[i]=j; i++; } -- cgit v1.2.3-70-g09d2