diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-10-03 12:58:52 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-10-03 12:58:52 +0000 |
commit | b61a1f62f63da6ff26f8913bc58573e480ac436b (patch) | |
tree | 7c3d469e3c5ce864c33bfe79c74c1aeac310d6e4 /src/map/unit.c | |
parent | 87b8959a622f960225abea168894cb28a7a342de (diff) | |
download | hercules-b61a1f62f63da6ff26f8913bc58573e480ac436b.tar.gz hercules-b61a1f62f63da6ff26f8913bc58573e480ac436b.tar.bz2 hercules-b61a1f62f63da6ff26f8913bc58573e480ac436b.tar.xz hercules-b61a1f62f63da6ff26f8913bc58573e480ac436b.zip |
* Cleaned up parts of skill.c related to skill units
- removed some nonsense code in skill_dance_switch() (from r8876)
- removed 'security system to prevent forgetting timer removal' (r1213)
- renamed some skill-related data structs (had same name as variables)
- commented out custom Venom Splasher countdown messaging code
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11347 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index 812dc0b47..17d9581f1 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -274,8 +274,8 @@ static int unit_delay_walktoxy_timer(int tid, unsigned int tick, int id, int dat //&4 -> Delay walking if the reason you can't walk is the canwalk delay int unit_walktoxy( struct block_list *bl, int x, int y, int flag) { - struct unit_data *ud = NULL; - struct status_change *sc = NULL; + struct unit_data* ud = NULL; + struct status_change* sc = NULL; nullpo_retr(0, bl); |