소스 검색

CLI suggests to connect before you login

Jonas Pflanzer 5 년 전
부모
커밋
a3c42f47d1
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      cli/src/userioman.cpp

+ 4 - 2
cli/src/userioman.cpp

@@ -77,8 +77,10 @@ void UserIoMan::printMessage(std::string msg, OutMsgType type) {
 }
 
 void UserIoMan::printWelcomeMessage() {
-	std::cout << "please login by entering \"login <username> <password>\" \nor "
-	             "sign up and log in with \"signup <username> <password>\""
+	std::cout << std::endl
+	          << "Please connect to a server via \"connect <ip> <port>\"," << std::endl
+	          << "login by entering \"login <username> <password>\"" << std::endl
+	          << "or sign up and log in with \"signup <username> <password>\"." << std::endl
 	          << std::endl;
 }