Commit 5389057a authored by 18손재민's avatar 18손재민 Committed by 18류지석

맵 설명 없을 경우 뜨지 않게 함

parent b423081e
......@@ -86,7 +86,7 @@ public class MapManager : SingletonBehaviour<MapManager>
PlayerController.inst.CreatePlayer(currentMap.startFloors[i]);
for (int i = 0; i < loadedMapData.bullets.Count; i++)
PlayerController.inst.AddBullet(loadedMapData.bullets[i]);
if (loadedMapData.comments != null || loadedMapData.comments != "")
if (loadedMapData.comments != null && loadedMapData.comments != "")
{
currentMap.comments = loadedMapData.comments;
GameManager.inst.commentUIGenerator.SetComment(currentMap.comments);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment