コード例 #1
0
ファイル: Universe.class.php プロジェクト: bergi9/2Moons
 public static function setEmulated($universeId)
 {
     if (!self::exists($universeId)) {
         throw new Exception('Unknown universe ID: ' . $universeId);
     }
     $session = Session::load();
     $session->emulatedUniverse = $universeId;
     $session->save();
     self::$emulatedUniverse = $universeId;
     return true;
 }