diff options
author | Inkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-05-03 10:20:13 +0000 |
---|---|---|
committer | Inkfish <Inkfish@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-05-03 10:20:13 +0000 |
commit | 0e27de90f75e1cfa3e79ef0379a64a2d6ba9253e (patch) | |
tree | f8b29a774541b242efeade22cc1d14d1938900a0 /src/map/pc.c | |
parent | 41ea0dda0d67e286405543064f4e49e8543951d6 (diff) | |
download | hercules-0e27de90f75e1cfa3e79ef0379a64a2d6ba9253e.tar.gz hercules-0e27de90f75e1cfa3e79ef0379a64a2d6ba9253e.tar.bz2 hercules-0e27de90f75e1cfa3e79ef0379a64a2d6ba9253e.tar.xz hercules-0e27de90f75e1cfa3e79ef0379a64a2d6ba9253e.zip |
* Block equipments switching for some skills (bugreport:2900)
- cannot change equipments during Arrow Vulcan's cast time
- cannot change equipments within Desperado's attack duration
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13724 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 3ca882d38..22d2ace6d 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -6681,6 +6681,12 @@ int pc_equipitem(struct map_session_data *sd,int n,int req_pos) return 0; } + if( DIFF_TICK(sd->canequip_tick,gettick()) > 0 ) + { + clif_equipitemack(sd,n,0,0); + return 0; + } + id = sd->inventory_data[n]; pos = pc_equippoint(sd,n); //With a few exceptions, item should go in all specified slots. |