修复挂机删除时间

back_recharge
wangyuan 2019-04-08 17:57:01 +08:00
parent 6bd50b34de
commit 6d328867a8
1 changed files with 2 additions and 0 deletions

View File

@ -32,7 +32,9 @@ public class AdventureManager extends MongoBase {
AdventureStateInfo adventureStateInfo = adventureStateInfoMap.get(position); AdventureStateInfo adventureStateInfo = adventureStateInfoMap.get(position);
if (adventureStateInfo!=null){ if (adventureStateInfo!=null){
removeString(getMongoKey() +".adventureStateInfoMap." + position); removeString(getMongoKey() +".adventureStateInfoMap." + position);
removeString(getMongoKey() +".allowTimeMap." + position);
adventureStateInfoMap.remove(position); adventureStateInfoMap.remove(position);
allowTimeMap.remove(position);
} }
} }