Browse Source

atcommand_follow is now more verbose.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@7711 54d463be-8e91-2dee-dedb-b68131a5f0ec
Euph 19 years ago
parent
commit
377f6c281d
2 changed files with 10 additions and 3 deletions
  1. 1 0
      Changelog-Trunk.txt
  2. 9 3
      src/map/atcommand.c

+ 1 - 0
Changelog-Trunk.txt

@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK.  ALL UNTESTED BUGFIXES/FEATURES GO
 IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
 
 2006/07/17
+	* atcommand_follow is now more verbose. [Adam]
 	* Manually added int_homun.c to the VS8 char_sql project, *should* work [DracoRPG]
 	* Orn's fix to the very critical skill level up bug [DracoRPG]
 	* Updated mob_db.sql to current mob_db.txt data. [Skotlex]

+ 9 - 3
src/map/atcommand.c

@@ -7075,15 +7075,21 @@ atcommand_follow(const int fd, struct map_session_data* sd,
 			return -1; 
 	
 		pc_stop_following (sd); 
-		clif_displaymessage(fd, "Stop following"); 
+		clif_displaymessage(fd, "Follow mode OFF."); 
 		return 0; 
 	} 
 	if ((pl_sd = map_nick2sd((char *) message)) != NULL) {
-		if (sd->followtarget == pl_sd->bl.id)
+		if (sd->followtarget == pl_sd->bl.id) {
 			pc_stop_following (sd);
-		else
+			clif_displaymessage(fd, "Follow mode OFF.");
+		} else {
 			pc_follow(sd, pl_sd->bl.id);
+			clif_displaymessage(fd, "Follow mode ON.");
+		}
 		return 0;
+	} else {
+		clif_displaymessage(fd, "Character not found.");
+		return -1;
 	}
 	
 	return 1;