Skip to content

Commit

Permalink
Update FrmMapRender2.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
HikariCalyx committed Jun 11, 2024
1 parent a62c936 commit a4bac7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WzComparerR2.MapRender/FrmMapRender2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ private void WorldMap_MapSpotClick(object sender, UIWorldMap.MapSpotEventArgs e)
this.StringLinker?.StringMap.TryGetValue(mapID, out sr);
//string mapName = sr?["mapName"] ?? "(null)"; //Kenny ver.
//int last = (mapName.LastOrDefault(c => c >= '가' && c <= '힣') - '가') % 28; //Kenny ver.
var message = string.Format("Will you teleport to this map?\r\n{0} ({1})", sr?.Name ?? "null", mapID);
var message = string.Format("このマップにテレポートしますか?\r\n{0} ({1})", sr?.Name ?? "null", mapID);
//var message = mapName + (last == 0 || last == 8 ? "" : "으") + "로 이동하시겠습니까?"; //Kenny ver.
MessageBox.Show(message, "", MessageBoxButton.OKCancel, callback, false);
}
Expand Down

0 comments on commit a4bac7a

Please sign in to comment.