初次提交

This commit is contained in:
李玉东 2025-09-14 16:43:51 +08:00
parent f1068da8e6
commit 9e197232c3
2 changed files with 13 additions and 8 deletions

View File

@ -5,7 +5,7 @@
</component>
<component name="ChangeListManager">
<list default="true" id="af4c07b7-4ec6-4591-87e0-621479a360cc" name="更改" comment="初次提交">
<change afterPath="$PROJECT_DIR$/.gitignore" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/main/java/com/hivekion/scenario/service/impl/ScenarioTaskServiceImpl.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/hivekion/scenario/service/impl/ScenarioTaskServiceImpl.java" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -253,7 +253,7 @@
<workItem from="1757646901779" duration="1536000" />
<workItem from="1757745562472" duration="11951000" />
<workItem from="1757761044173" duration="32000" />
<workItem from="1757813716738" duration="22315000" />
<workItem from="1757813716738" duration="22399000" />
</task>
<task id="LOCAL-00001" summary="初次提交">
<option name="closed" value="true" />
@ -375,7 +375,15 @@
<option name="project" value="LOCAL" />
<updated>1757839231429</updated>
</task>
<option name="localTasksCounter" value="16" />
<task id="LOCAL-00016" summary="初次提交">
<option name="closed" value="true" />
<created>1757839345644</created>
<option name="number" value="00016" />
<option name="presentableId" value="LOCAL-00016" />
<option name="project" value="LOCAL" />
<updated>1757839345644</updated>
</task>
<option name="localTasksCounter" value="17" />
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">

View File

@ -77,8 +77,7 @@ public class ScenarioTaskServiceImpl extends
weatherTrigger(currentScenario, roomId);
//任务触发
taskTrigger(currentScenario, roomId);
//物资变化
supplierChangeUseUp(currentScenario, roomId);
});
}).start();
}
@ -140,7 +139,7 @@ public class ScenarioTaskServiceImpl extends
responseCmdInfo.setData(weatherMsgArray);
Global.sendCmdInfoQueue.add(responseCmdInfo);
} catch (Exception ex) {
ex.printStackTrace();
log.error(ex.getMessage());
}
@ -167,9 +166,7 @@ public class ScenarioTaskServiceImpl extends
}
}
private void supplierChangeUseUp(Scenario currentScenario, String roomId) {
}
@Override