- Simplified the code for @storage

- Added echoing messages back to self when using @/# commands on whispers and party/guild messages, to prevent the client from muting yourself.


git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8810 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex
2006-09-19 14:07:32 +00:00
parent 1390b25174
commit 97eb6c01f9
3 changed files with 27 additions and 12 deletions

View File

@@ -2194,21 +2194,13 @@ int atcommand_storage(
const int fd, struct map_session_data* sd,
const char* command, const char* message)
{
struct storage *stor; //changes from Freya/Yor
nullpo_retr(-1, sd);
if (sd->state.storage_flag) {
if (storage_storageopen(sd) == 1)
{ //Already open.
clif_displaymessage(fd, msg_txt(250));
return -1;
}
if ((stor = account2storage2(sd->status.account_id)) != NULL && stor->storage_status == 1) {
clif_displaymessage(fd, msg_txt(250));
return -1;
}
storage_storageopen(sd);
return 0;
}