diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-29 10:12:26 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-29 10:12:26 +0000 |
commit | 98854fb7d9b029157c5fd02701763301923cfc61 (patch) | |
tree | 39ff4820dc6c4abdb1d838e266a4bfcde10f1161 /src/map/intif.c | |
parent | 9e62c33d9ee58d7dcf1c667a77b3fdd814bc0943 (diff) | |
download | hercules-98854fb7d9b029157c5fd02701763301923cfc61.tar.gz hercules-98854fb7d9b029157c5fd02701763301923cfc61.tar.bz2 hercules-98854fb7d9b029157c5fd02701763301923cfc61.tar.xz hercules-98854fb7d9b029157c5fd02701763301923cfc61.zip |
[Optimized ]
Removed unused variable (account_id) in storage_guild_storagesaved.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6815 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/intif.c')
-rw-r--r-- | src/map/intif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/intif.c b/src/map/intif.c index 0046d0c0c..926d03335 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -1003,7 +1003,7 @@ int intif_parse_SaveGuildStorage(int fd) if(battle_config.save_log) {
ShowInfo("intif_save_guild_storage: done %d %d %d\n",RFIFOL(fd,2),RFIFOL(fd,6),RFIFOB(fd,10) );
}
- storage_guild_storagesaved(RFIFOL(fd,2), RFIFOL(fd,6));
+ storage_guild_storagesaved(/*RFIFOL(fd,2), */RFIFOL(fd,6));
return 0;
}
|