game: 턴 지정 단위를 1/30에서 1/60으로 변경

This commit is contained in:
2024-02-24 11:46:32 +00:00
parent 66b2f1a8f2
commit bcf5b5cb7d
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -485,9 +485,9 @@ watch(inheritCity, (newValue: undefined | number) => {
const inheritTurnTimeZone = ref<number>();
const turnTimeZoneList: string[] = (()=>{
const result: string[] = [];
const zoneSec = turnterm * (60 / 30); // 1 / 60
const zoneSec = turnterm; // * 60 / 60
let zoneCur = 0;
for(const idx of range(30)){
for(const idx of range(60)){
const zoneNext = zoneCur + zoneSec;
const zoneCurMin = Math.floor(zoneCur / 60);