Skip to content

Commit

Permalink
map/
Browse files Browse the repository at this point in the history
  • Loading branch information
YongHwan2161 authored May 10, 2024
1 parent ad65f19 commit 08e7ea0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2610,9 +2610,9 @@ int Network()
Log(L"올바른 입력 형식이 아닙니다. ");
}
}
else if (inputText.size() >= 4 && inputText.substr(0, 4) == "map,")
else if (inputText.size() >= 4 && inputText.substr(0, 4) == "map/")
{
vector<string> spl = splitStringASCII(inputText, ',');
vector<string> spl = splitStringASCII(inputText, '/');
if (spl.size() == 3)
{
AddStringToNode2(spl[1], spl[2], cNode[user], cCh[user], user);
Expand Down

0 comments on commit 08e7ea0

Please sign in to comment.