|
@@ -91,6 +91,20 @@ class Data_UserGame extends HashSaver {
|
|
|
$this->heros()->fixArray();
|
|
|
$this->task()->fixArray();
|
|
|
$this->store()->fixArray();
|
|
|
+ //$this->
|
|
|
+
|
|
|
+ $exploreAreas = $this->store()->exploreArea;
|
|
|
+ if ($exploreAreas != null) {
|
|
|
+ $dic = new \stdClass();
|
|
|
+ foreach ($this->store()->exploreArea as $areaId => $area) {
|
|
|
+ $Ins_ExploreArea = new Ins_ExploreArea($area);
|
|
|
+ $Ins_ExploreArea->fixArray();
|
|
|
+
|
|
|
+ $dic->$areaId = $Ins_ExploreArea;
|
|
|
+ }
|
|
|
+ $this->store()->exploreArea = $dic;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|