diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-19 11:19:35 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-19 11:19:35 +0000 |
commit | 0b2f57dd4dd8e3ee2a15f9fb121313f45ebc9926 (patch) | |
tree | 951a1d3b39b8bd5bad79cd890a685ea7e85ab041 /src/map/map.h | |
parent | c96e27b729adf2b8244f6985371b8f0dd6547672 (diff) | |
download | hercules-0b2f57dd4dd8e3ee2a15f9fb121313f45ebc9926.tar.gz hercules-0b2f57dd4dd8e3ee2a15f9fb121313f45ebc9926.tar.bz2 hercules-0b2f57dd4dd8e3ee2a15f9fb121313f45ebc9926.tar.xz hercules-0b2f57dd4dd8e3ee2a15f9fb121313f45ebc9926.zip |
Removed the wtf-y mmo_char_fromsql_short() from r2527
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10578 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/map/map.h b/src/map/map.h index d7ebb3d6c..4ff29327b 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -180,8 +180,6 @@ enum { #define map_flag_gvg(m) (map[m].flag.gvg || (agit_flag && map[m].flag.gvg_castle)) //Specifies if the map is tagged as GvG/WoE (regardless of agit_flag status) #define map_flag_gvg2(m) (map[m].flag.gvg || map[m].flag.gvg_castle) -//Caps values to min/max -#define cap_value(a, min, max) (a>=max?max:a<=min?min:a) //This stackable implementation does not means a BL can be more than one type at a time, but it's //meant to make it easier to check for multiple types at a time on invocations such as |