diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-01-31 18:22:14 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-01-31 18:22:14 +0000 |
commit | d90b9f6768e9e33efc97d769f24fe0315da683ac (patch) | |
tree | 4218fcb1a9b505bcd1f5f887dc63713a12cd28d7 /src/map/storage.c | |
parent | c236918cc7633f8aca945f190ed44dff8c57fde1 (diff) | |
download | hercules-d90b9f6768e9e33efc97d769f24fe0315da683ac.tar.gz hercules-d90b9f6768e9e33efc97d769f24fe0315da683ac.tar.bz2 hercules-d90b9f6768e9e33efc97d769f24fe0315da683ac.tar.xz hercules-d90b9f6768e9e33efc97d769f24fe0315da683ac.zip |
- Fixed skill_check_cloak to use the current skill level of the cloaking skill and not pc_checkskill() to know if a cloaker away from a wall should be uncloaked.
- Likely fixed opening guild storage.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5146 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/storage.c')
-rw-r--r-- | src/map/storage.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/map/storage.c b/src/map/storage.c index b90d2d306..db5f097ee 100644 --- a/src/map/storage.c +++ b/src/map/storage.c @@ -464,11 +464,8 @@ int storage_guild_storageopen(struct map_session_data *sd) clif_updateguildstorageamount(sd,gstor);
return 0;
}
- else {
- gstor = guild2storage(sd->status.guild_id);
- gstor->storage_status = 1;
+ else
intif_request_guild_storage(sd->status.account_id,sd->status.guild_id);
- }
return 0;
}
|