summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcodemaster <codemaster@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-20 15:08:58 +0000
committercodemaster <codemaster@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-20 15:08:58 +0000
commitf8e12723d360146ebab09f61cef7d8dbb889c201 (patch)
tree2369e73a14b95f5b409316497ce43bca6cb577f0
parent274a85296ab978f42c083e1dfbf8764ab67de6d0 (diff)
downloadhercules-f8e12723d360146ebab09f61cef7d8dbb889c201.tar.gz
hercules-f8e12723d360146ebab09f61cef7d8dbb889c201.tar.bz2
hercules-f8e12723d360146ebab09f61cef7d8dbb889c201.tar.xz
hercules-f8e12723d360146ebab09f61cef7d8dbb889c201.zip
Changed max_paramter to an unsigned int
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@656 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog.txt1
-rw-r--r--Dev/bugs.txt15
-rw-r--r--src/map/battle.h2
3 files changed, 11 insertions, 7 deletions
diff --git a/Changelog.txt b/Changelog.txt
index d62b90513..bd750dc60 100644
--- a/Changelog.txt
+++ b/Changelog.txt
@@ -1,6 +1,7 @@
Date Added
12/20
+ * Changed max_paramter to an unsigned int so that you can have over 255 as your max stat [Codemaster]
* Experimental: Reverting a change on deleting any skill units when we're
logging off - might reduce the 'delete_timer' errors [celest]
* Added check whether an item is allowed to be dropped, for example wedding
diff --git a/Dev/bugs.txt b/Dev/bugs.txt
index 22262c54c..cb64b214a 100644
--- a/Dev/bugs.txt
+++ b/Dev/bugs.txt
@@ -107,9 +107,7 @@ Problem: Chars with ' in their name.. is legal.. and messes up sql
Assigned: N/A
Progress: 0%
- DB server Error - You have an error in your SQL syntax; check the manual that co
- rresponds to your MySQL server version for the right syntax to use near 'n' Sniff')' at line 1
- Scratch 'n' Sniff
+ DB server Error - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'n' Sniff')' at line 1 Scratch 'n' Sniff
Problem: Spiral Pierce can cause loss of Skill Points
Assigned: N/A
@@ -117,12 +115,17 @@ Progress: 0%
If you have a skill but due to a job change (or admin update), the
skill tree changes and you no longer can get to that skill, you
- will loose the skill points if you log out/in
+ will loose the skill points if you log out/i
The easiest way to reproduce this problem is become a Peco Lord
Knight, get spiral pierce, get off the peco, log off, log in, and
get back on the peco. You will not have Spiral Pierce anymore and
you will have lost the skill points
- blacksmith hammerfall on the new_1-1.gat's bridge crashes server
- hunter spamming traps crashes server
+Problem: blacksmith hammerfall on the new_1-1.gat's bridge crashes server
+Assigned: N/A
+Progress: 0%
+
+Problem: hunter spamming traps crashes server
+Assigned: N/A
+Progress: 0% \ No newline at end of file
diff --git a/src/map/battle.h b/src/map/battle.h
index 48a543844..616a65061 100644
--- a/src/map/battle.h
+++ b/src/map/battle.h
@@ -217,7 +217,7 @@ extern struct Battle_Config {
int max_hp;
int max_sp;
int max_lv;
- int max_parameter;
+ unsigned int max_parameter;
int max_cart_weight;
int pc_skill_log;
int mob_skill_log;