Removing unused comments

This commit is contained in:
Đạt Nhân Trương
2022-08-11 16:02:53 +07:00
parent 8e395b0770
commit 53914bbd32
3 changed files with 3 additions and 4 deletions

View File

@@ -7406,6 +7406,9 @@ public class Character extends AbstractCharacterObject {
ret.buddylist.loadFromDb(charid);
ret.storage = wserv.getAccountStorage(ret.accountid);
/* Double-check storage incase player is first time on server
* The storage won't exist so nothing to load
*/
if(ret.storage == null) {
wserv.loadAccountStorage(ret.accountid);
ret.storage = wserv.getAccountStorage(ret.accountid);