기본 도시 정보 데이터 대폭 추가

This commit is contained in:
2020-08-15 03:46:43 +09:00
parent 1b6c2152d3
commit 6e5cc7fc6c
3 changed files with 118 additions and 65 deletions
+2 -2
View File
@@ -235,10 +235,10 @@ function reloadWorldMap(option, drawTarget) {
}
function mergeClickable(city) {
//clickable = (remainSpy << 3) | (ourCity << 2) | (shownByGeneral << 1) | clickableAll
//clickable = (defaultCity << 4 ) | (remainSpy << 3) | (ourCity << 2) | (shownByGeneral << 1) | clickableAll
var id = city.id;
var nationId = city.nationId;
var clickable = 0;
var clickable = 16;
if (id in spyList) {
clickable |= spyList[id] << 3;
}