fix(emotion): 取消任务后按离线时间恢复心情 - #1
Conversation
CI 检查报告
检查结果
导入冒烟测试
|
审阅者指南通过将恢复规则集中到共享工具中,并在配置更新时(包括任务取消后)应用这些规则,同时为离线恢复、上限、分数进度以及公共编队情绪添加测试,使配置加载过程中的情绪恢复与战斗逻辑保持一致。 任务取消后在 config_update 期间进行情绪恢复的时序图sequenceDiagram
actor User
participant ConfigUpdater
participant recover_emotion_config
participant _recover_fleet
participant calculate_emotion_recovery
User->>ConfigUpdater: config_update(old, is_template=False, now)
ConfigUpdater->>recover_emotion_config: recover_emotion_config(new, now)
recover_emotion_config->>_recover_fleet: _recover_fleet(emotion, Fleet1, now)
_recover_fleet->>calculate_emotion_recovery: calculate_emotion_recovery(value, recover, elapsed, oath, onsen)
calculate_emotion_recovery-->>_recover_fleet: current, fractional
_recover_fleet-->>recover_emotion_config: update Fleet1Value, Fleet1Record
recover_emotion_config-->>ConfigUpdater: updated emotion and public_emotion
ConfigUpdater-->>User: return new config with offline emotion restored
文件级变更
技巧与命令与 Sourcery 交互
自定义你的体验访问你的 控制面板 来:
获取帮助Original review guide in EnglishReviewer's GuideAligns emotion recovery during config loading with combat logic by centralizing recovery rules in shared utilities, applying them when configs are updated (including after task cancellation), and adding tests for offline recovery, caps, fractional progress, and public fleet emotion. Sequence diagram for emotion recovery during config_update after task cancellationsequenceDiagram
actor User
participant ConfigUpdater
participant recover_emotion_config
participant _recover_fleet
participant calculate_emotion_recovery
User->>ConfigUpdater: config_update(old, is_template=False, now)
ConfigUpdater->>recover_emotion_config: recover_emotion_config(new, now)
recover_emotion_config->>_recover_fleet: _recover_fleet(emotion, Fleet1, now)
_recover_fleet->>calculate_emotion_recovery: calculate_emotion_recovery(value, recover, elapsed, oath, onsen)
calculate_emotion_recovery-->>_recover_fleet: current, fractional
_recover_fleet-->>recover_emotion_config: update Fleet1Value, Fleet1Record
recover_emotion_config-->>ConfigUpdater: updated emotion and public_emotion
ConfigUpdater-->>User: return new config with offline emotion restored
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - 我发现了 2 个问题
给 AI Agent 的提示
请根据这次代码审查中的评论进行修改:
## 单条评论
### 评论 1
<location path="module/config/emotion_recovery.py" line_range="54" />
<code_context>
+ onsen=bool(group.get(f'{prefix}Onsen', False)),
+ )
+ maximum = DIC_RECOVER_MAX[recover]
+ recovery = speed * elapsed / 360
+ recovered_points = int(recovery)
+ new_value = min(max(int(value), 0) + recovered_points, maximum)
</code_context>
<issue_to_address>
**建议:** 避免对 `360` 写死常量,并在语义上明确地将该计算与 6 分钟间隔关联起来。
`360` 表示 6 分钟心跳间隔对应的秒数。为了降低脆弱性,并在该间隔变化时仍能保持恢复计算的一致性,建议提取一个具名常量(例如 `SECONDS_PER_TICK = 6 * 60`),并在所有依赖该值的恢复逻辑中复用它。
建议实现:
```python
maximum = DIC_RECOVER_MAX[recover]
recovery = speed * elapsed / SECONDS_PER_TICK
recovered_points = int(recovery)
new_value = min(max(int(value), 0) + recovered_points, maximum)
```
```python
fractional = recovery - recovered_points
record_time = now.replace(microsecond=0)
if fractional > 0:
record_time -= timedelta(seconds=fractional * SECONDS_PER_TICK / speed)
```
为了完整落实该建议,你还应该:
1. 定义一个模块级常量,例如在 `emotion_recovery.py` 顶部附近:
`SECONDS_PER_TICK = 6 * 60 # 6-minute tick interval in seconds`
2. 如果该模块(或相关模块)中还有其他地方隐式假设了 6 分钟 / 360 秒的间隔,请将它们更新为使用 `SECONDS_PER_TICK`,以保持一致性。
</issue_to_address>
### 评论 2
<location path="tests/test_emotion_recovery.py" line_range="22-31" />
<code_context>
+ },
+ }
+
+ new = ConfigUpdater().config_update(old, now=self.now)
+
+ self.assertEqual(new['Main']['Emotion']['Fleet1Value'], 119)
+ self.assertEqual(new['Main']['Emotion']['Fleet1Record'], self.now)
+
+ def test_config_reload_preserves_fractional_recovery_time(self):
</code_context>
<issue_to_address>
**建议(测试):** 增加一个测试,以验证在 `is_template=True` 时会跳过情绪恢复逻辑,并保持模板配置不变。
鉴于 `ConfigUpdater.config_update` 现在会接收 `now`,并且只有在 `is_template` 为 `False` 时才会调用 `recover_emotion_config`,请新增一个测试:在传入 `is_template=True` 的情况下,使用一个包含情绪字段的 `old` 配置,并断言 `Value` 和 `Record` 都保持不变。这样可以防止未来的修改不小心对模板配置应用恢复逻辑。
```suggestion
}
new = ConfigUpdater().config_update(old, now=self.now)
self.assertEqual(new['Main']['Emotion']['Fleet1Value'], 119)
self.assertEqual(new['Main']['Emotion']['Fleet1Record'], self.now)
def test_template_config_skips_emotion_recovery(self):
old = {
'Main': {
'Emotion': {
'Fleet1Value': 39,
'Fleet1Record': self.now - timedelta(hours=12),
'Fleet1Recover': 'not_in_dormitory',
'Fleet1Oath': False,
'Fleet1Onsen': False,
},
},
}
new = ConfigUpdater().config_update(old, now=self.now, is_template=True)
self.assertEqual(new['Main']['Emotion']['Fleet1Value'], old['Main']['Emotion']['Fleet1Value'])
self.assertEqual(new['Main']['Emotion']['Fleet1Record'], old['Main']['Emotion']['Fleet1Record'])
def test_config_reload_preserves_fractional_recovery_time(self):
old = {
'Event': {
```
</issue_to_address>帮我变得更有用!请在每条评论上点击 👍 或 👎,我会根据你的反馈改进后续的审查。
Original comment in English
Hey - I've found 2 issues
Prompt for AI Agents
Please address the comments from this code review:
## Individual Comments
### Comment 1
<location path="module/config/emotion_recovery.py" line_range="54" />
<code_context>
+ onsen=bool(group.get(f'{prefix}Onsen', False)),
+ )
+ maximum = DIC_RECOVER_MAX[recover]
+ recovery = speed * elapsed / 360
+ recovered_points = int(recovery)
+ new_value = min(max(int(value), 0) + recovered_points, maximum)
</code_context>
<issue_to_address>
**suggestion:** Avoid hardcoding `360` and tie the calculation explicitly to the 6-minute interval semantics.
`360` represents the 6‑minute tick interval in seconds. To reduce brittleness and keep recovery calculations consistent if this interval changes, extract a named constant (e.g. `SECONDS_PER_TICK = 6 * 60`) and reuse it wherever recovery logic depends on this value.
Suggested implementation:
```python
maximum = DIC_RECOVER_MAX[recover]
recovery = speed * elapsed / SECONDS_PER_TICK
recovered_points = int(recovery)
new_value = min(max(int(value), 0) + recovered_points, maximum)
```
```python
fractional = recovery - recovered_points
record_time = now.replace(microsecond=0)
if fractional > 0:
record_time -= timedelta(seconds=fractional * SECONDS_PER_TICK / speed)
```
To fully implement the suggestion, you should also:
1. Define a module-level constant, e.g. near the top of `emotion_recovery.py`:
`SECONDS_PER_TICK = 6 * 60 # 6-minute tick interval in seconds`
2. If there are any other parts of this module (or related modules) that implicitly assume a 6-minute / 360-second interval, update them to use `SECONDS_PER_TICK` for consistency.
</issue_to_address>
### Comment 2
<location path="tests/test_emotion_recovery.py" line_range="22-31" />
<code_context>
+ },
+ }
+
+ new = ConfigUpdater().config_update(old, now=self.now)
+
+ self.assertEqual(new['Main']['Emotion']['Fleet1Value'], 119)
+ self.assertEqual(new['Main']['Emotion']['Fleet1Record'], self.now)
+
+ def test_config_reload_preserves_fractional_recovery_time(self):
</code_context>
<issue_to_address>
**suggestion (testing):** Add a test to verify that `is_template=True` skips emotion recovery and leaves template configs unchanged.
Given that `ConfigUpdater.config_update` now takes `now` and calls `recover_emotion_config` only when `is_template` is `False`, add a test that passes `is_template=True` with an `old` config containing emotion fields and asserts that both `Value` and `Record` are unchanged. This will guard against future changes inadvertently applying recovery to template configs.
```suggestion
}
new = ConfigUpdater().config_update(old, now=self.now)
self.assertEqual(new['Main']['Emotion']['Fleet1Value'], 119)
self.assertEqual(new['Main']['Emotion']['Fleet1Record'], self.now)
def test_template_config_skips_emotion_recovery(self):
old = {
'Main': {
'Emotion': {
'Fleet1Value': 39,
'Fleet1Record': self.now - timedelta(hours=12),
'Fleet1Recover': 'not_in_dormitory',
'Fleet1Oath': False,
'Fleet1Onsen': False,
},
},
}
new = ConfigUpdater().config_update(old, now=self.now, is_template=True)
self.assertEqual(new['Main']['Emotion']['Fleet1Value'], old['Main']['Emotion']['Fleet1Value'])
self.assertEqual(new['Main']['Emotion']['Fleet1Record'], old['Main']['Emotion']['Fleet1Record'])
def test_config_reload_preserves_fractional_recovery_time(self):
old = {
'Event': {
```
</issue_to_address>Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
|
@sourcery-ai review |
There was a problem hiding this comment.
Hey - 我发现了 1 个问题
Prompt for AI Agents
Please address the comments from this code review:
## Individual Comments
### Comment 1
<location path="tests/test_emotion_recovery.py" line_range="7" />
<code_context>
+from module.config.config_updater import ConfigUpdater
+
+
+class TestEmotionConfigRecovery(unittest.TestCase):
+ def setUp(self):
+ self.now = datetime(2026, 8, 18, 12, 0, 0)
</code_context>
<issue_to_address>
**suggestion (testing):** 为非正的经过时间(记录时间在未来或等于 `now`)添加测试。
目前我们只测试了严格为正的时间间隔。请增加一个测试用例,使 `Fleet*Record` 等于 `now`,以及一个稍微在未来的测试用例(例如 `now + 1 minute`),并断言数值和值记录都保持不变。这样可以覆盖 `_recover_fleet` 中 `if elapsed <= 0: return` 这个保护逻辑,有助于防止与未来时间戳影响情绪状态相关的回归问题。
建议实现:
```python
class TestEmotionConfigRecovery(unittest.TestCase):
def setUp(self):
self.now = datetime(2026, 8, 18, 12, 0, 0)
def test_recover_fleet_record_equal_now_does_not_change(self):
old = {
'Main': {
'Emotion': {
'Fleet1Value': 39,
'Fleet1Record': self.now,
'Fleet1Recover': 'not_in_dormitory',
'Fleet1Oath': False,
'Fleet1Onsen': False,
}
}
}
updater = ConfigUpdater()
emotions = old['Main']['Emotion']
# elapsed = 0, guard `if elapsed <= 0: return` should keep values unchanged
updater._recover_fleet(emotions, 'Fleet1', self.now)
self.assertEqual(39, emotions['Fleet1Value'])
self.assertEqual(self.now, emotions['Fleet1Record'])
def test_recover_fleet_future_record_does_not_change(self):
future_record = self.now + timedelta(minutes=1)
old = {
'Main': {
'Emotion': {
'Fleet1Value': 39,
'Fleet1Record': future_record,
'Fleet1Recover': 'not_in_dormitory',
'Fleet1Oath': False,
'Fleet1Onsen': False,
}
}
}
updater = ConfigUpdater()
emotions = old['Main']['Emotion']
# elapsed < 0, guard `if elapsed <= 0: return` should keep values unchanged
updater._recover_fleet(emotions, 'Fleet1', self.now)
self.assertEqual(39, emotions['Fleet1Value'])
self.assertEqual(future_record, emotions['Fleet1Record'])
def test_config_reload_recovers_stale_task_emotion_to_maximum(self):
old = {
'Main': {
'Emotion': {
'Fleet1Value': 39,
'Fleet1Record': self.now - timedelta(hours=12),
'Fleet1Recover': 'not_in_dormitory',
'Fleet1Oath': False,
'Fleet1Onsen': False,
```
如果实际的 `_recover_fleet` 函数签名不同(例如不接收 `now` 或期望不同的参数),请相应调整 `updater._recover_fleet(...)` 调用以匹配现有实现。同时确保 `ConfigUpdater` 是负责情绪恢复的正确类;如果项目使用了不同的公共 API(如 `recover_emotion` 方法),你可以将直接调用 `_recover_fleet` 替换为这个公共 API,同时仍然按照上面的方式设置输入字典和断言。
</issue_to_address>帮我变得更有用!请在每条评论上点击 👍 或 👎,我会根据你的反馈改进后续的代码审查。
Original comment in English
Hey - I've found 1 issue
Prompt for AI Agents
Please address the comments from this code review:
## Individual Comments
### Comment 1
<location path="tests/test_emotion_recovery.py" line_range="7" />
<code_context>
+from module.config.config_updater import ConfigUpdater
+
+
+class TestEmotionConfigRecovery(unittest.TestCase):
+ def setUp(self):
+ self.now = datetime(2026, 8, 18, 12, 0, 0)
</code_context>
<issue_to_address>
**suggestion (testing):** Add tests for non-positive elapsed time (record in the future or equal to `now`).
Right now we only test strictly positive elapsed intervals. Please add one test where `Fleet*Record` equals `now` and one where it’s slightly in the future (e.g. `now + 1 minute`), and assert that both the value and record remain unchanged. This will exercise the `if elapsed <= 0: return` guard in `_recover_fleet` and help prevent regressions around future timestamps affecting emotion state.
Suggested implementation:
```python
class TestEmotionConfigRecovery(unittest.TestCase):
def setUp(self):
self.now = datetime(2026, 8, 18, 12, 0, 0)
def test_recover_fleet_record_equal_now_does_not_change(self):
old = {
'Main': {
'Emotion': {
'Fleet1Value': 39,
'Fleet1Record': self.now,
'Fleet1Recover': 'not_in_dormitory',
'Fleet1Oath': False,
'Fleet1Onsen': False,
}
}
}
updater = ConfigUpdater()
emotions = old['Main']['Emotion']
# elapsed = 0, guard `if elapsed <= 0: return` should keep values unchanged
updater._recover_fleet(emotions, 'Fleet1', self.now)
self.assertEqual(39, emotions['Fleet1Value'])
self.assertEqual(self.now, emotions['Fleet1Record'])
def test_recover_fleet_future_record_does_not_change(self):
future_record = self.now + timedelta(minutes=1)
old = {
'Main': {
'Emotion': {
'Fleet1Value': 39,
'Fleet1Record': future_record,
'Fleet1Recover': 'not_in_dormitory',
'Fleet1Oath': False,
'Fleet1Onsen': False,
}
}
}
updater = ConfigUpdater()
emotions = old['Main']['Emotion']
# elapsed < 0, guard `if elapsed <= 0: return` should keep values unchanged
updater._recover_fleet(emotions, 'Fleet1', self.now)
self.assertEqual(39, emotions['Fleet1Value'])
self.assertEqual(future_record, emotions['Fleet1Record'])
def test_config_reload_recovers_stale_task_emotion_to_maximum(self):
old = {
'Main': {
'Emotion': {
'Fleet1Value': 39,
'Fleet1Record': self.now - timedelta(hours=12),
'Fleet1Recover': 'not_in_dormitory',
'Fleet1Oath': False,
'Fleet1Onsen': False,
```
If the actual `_recover_fleet` signature differs (for example, if it does not take `now` or expects different parameters), adjust the `updater._recover_fleet(...)` calls accordingly to match the existing implementation. Also ensure that `ConfigUpdater` is the correct class responsible for emotion recovery; if the project uses a different public API (e.g. a `recover_emotion` method), you can replace the direct `_recover_fleet` calls with that public API while still setting up the input dictionaries and assertions as shown.
</issue_to_address>Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
|
@sourcery-ai review |
There was a problem hiding this comment.
Hey - 我给出了一些高层次的反馈:
- 从
module.config.emotion_recovery向module.combat.emotion导入DIC_RECOVER_MAX、SECONDS_PER_TICK和emotion_recovery_speed会引入一个从 config 到 combat 的耦合;建议把这些共享的常量/辅助方法移到一个中立模块(例如module.common.emotion_constants),这样 combat 和 config 都依赖它,而不是彼此之间产生依赖。 _recover_fleet中的恢复公式实际上与FleetEmotion.update中的实现重复;为避免将来行为出现偏差,建议提取一个共享的辅助方法(例如一个纯函数,从 value/record/recover/flags/now 计算新的值和记录时间),并在配置加载和运行时情绪更新中都使用它。
给 AI Agent 的提示
Please address the comments from this code review:
## Overall Comments
- Importing `DIC_RECOVER_MAX`, `SECONDS_PER_TICK` and `emotion_recovery_speed` from `module.config.emotion_recovery` into `module.combat.emotion` introduces a config→combat coupling; consider moving these shared constants/helpers to a neutral module (e.g. `module.common.emotion_constants`) so combat and config both depend on it instead of each other.
- The recovery formula in `_recover_fleet` is effectively duplicated from `FleetEmotion.update`; to avoid future drift in behavior, consider extracting a shared helper (e.g. a pure function that computes new value and record time from value/record/recover/flags/now) and using it in both config loading and runtime emotion updates.帮我变得更有用!请在每条评论上点击 👍 或 👎,我会根据你的反馈改进后续的评审。
Original comment in English
Hey - I've left some high level feedback:
- Importing
DIC_RECOVER_MAX,SECONDS_PER_TICKandemotion_recovery_speedfrommodule.config.emotion_recoveryintomodule.combat.emotionintroduces a config→combat coupling; consider moving these shared constants/helpers to a neutral module (e.g.module.common.emotion_constants) so combat and config both depend on it instead of each other. - The recovery formula in
_recover_fleetis effectively duplicated fromFleetEmotion.update; to avoid future drift in behavior, consider extracting a shared helper (e.g. a pure function that computes new value and record time from value/record/recover/flags/now) and using it in both config loading and runtime emotion updates.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Importing `DIC_RECOVER_MAX`, `SECONDS_PER_TICK` and `emotion_recovery_speed` from `module.config.emotion_recovery` into `module.combat.emotion` introduces a config→combat coupling; consider moving these shared constants/helpers to a neutral module (e.g. `module.common.emotion_constants`) so combat and config both depend on it instead of each other.
- The recovery formula in `_recover_fleet` is effectively duplicated from `FleetEmotion.update`; to avoid future drift in behavior, consider extracting a shared helper (e.g. a pure function that computes new value and record time from value/record/recover/flags/now) and using it in both config loading and runtime emotion updates.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
|
@sourcery-ai review |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 1ce07042c9
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
@codex review |
|
Codex Review: Something went wrong. Try again later by commenting “@codex review”. ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
修改内容
问题原因
任务取消后不会再进入
Emotion.update(),而 WebUI 重新打开时只读取持久化的旧值,因此心情会长期停留在取消瞬间。现在配置加载会基于Value、Record和恢复设置计算当前值。影响
长时间停用主线或活动任务后,重新打开配置或重新启用任务时会看到按离线时间恢复后的正确心情值;达到上限时显示 119 或 150。
验证
uv run python -m unittest tests.test_emotion_recovery tests.test_webui_config_search tests.test_webui_dashboard tests.test_webui_lifecycle(25/25)uv run ruff check . --select E9,F63,F7,F82 --ignore F821,F722uv run python -m compileall -q module/config/emotion_recovery.py module/config/config_updater.py module/combat/emotion.py tests/test_emotion_recovery.pyuv run -m module.config.config_updater(无生成文件差异)全量测试发现 5 项与本修改无关的测试隔离或既有配置失败,定向测试均通过。
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(增强):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(增强):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(增强):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(增强):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(增强):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(增强):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(增强):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(增强):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(增强):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(增强):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug 修复:
增强:
测试:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests:
Bug Fixes(错误修复):
Enhancements(改进):
Tests(测试):
Original summary in English
Summary by Sourcery
在加载配置期间恢复已持久化的舰队情绪值,并统一离线和在线游戏过程中的恢复行为。
Bug Fixes:
Enhancements:
Tests:
Original summary in English
Summary by Sourcery
Restore persisted fleet emotions during configuration loading and unify recovery behavior across offline and active gameplay.
Bug Fixes:
Enhancements:
Tests: