Просмотр исходного кода

* Fixed auto-generated statpoint table missing 3 status points (since r1107).

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14504 54d463be-8e91-2dee-dedb-b68131a5f0ec
ai4rei 14 лет назад
Родитель
Сommit
f483bfedc3
2 измененных файлов с 3 добавлено и 1 удалено
  1. 2 0
      Changelog-Trunk.txt
  2. 1 1
      src/map/pc.c

+ 2 - 0
Changelog-Trunk.txt

@@ -1,5 +1,7 @@
 Date	Added
 
+2010/11/26
+	* Fixed auto-generated statpoint table missing 3 status points (since r1107). [Ai4rei]
 2010/11/25
 	* Too large client packets, which would otherwise cause the client to crash, are now dropped and reported (bugreport:4391). [Ai4rei]
 	* Fixed a crash when an unknown map is encountered during parsing a 'script' npc and the script has mismatched curly braces (bugreport:4423, since r11502). [Ai4rei]

+ 1 - 1
src/map/pc.c

@@ -8088,7 +8088,7 @@ int pc_readdb(void)
 	// ƒXƒLƒ‹ƒcƒŠ?
 	memset(statp,0,sizeof(statp));
 	i=1;
-	stat = 45;	// base points
+	stat = 48;	// base points
 	sprintf(line, "%s/statpoint.txt", db_path);
 	fp=fopen(line,"r");
 	if(fp == NULL){