diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-30 13:40:10 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-30 13:40:10 +0000 |
commit | 9f0ff780a9b3de47895dfeb20417390d2bd9dc93 (patch) | |
tree | 37e1e12ba4067391518220b2e32433ef492dfb24 /src/map/atcommand.c | |
parent | e56a9a9e52f9d9f7444e5a994ef16a587c474324 (diff) | |
download | hercules-9f0ff780a9b3de47895dfeb20417390d2bd9dc93.tar.gz hercules-9f0ff780a9b3de47895dfeb20417390d2bd9dc93.tar.bz2 hercules-9f0ff780a9b3de47895dfeb20417390d2bd9dc93.tar.xz hercules-9f0ff780a9b3de47895dfeb20417390d2bd9dc93.zip |
- Added a message to @clearweather stating when climate changes will dispel.
- Corrected @hidenpc saying that it's command name was "@npcoff"
- Updated itemdb reading on the char-sql server so that it reads both item_db and item_db2 files (totally untested yet as I can't compile SQL here x.x)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8545 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 3d604497a..a5478c50e 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -6184,7 +6184,7 @@ int atcommand_hidenpc(const int fd, struct map_session_data* sd, malloc_tsetdword(NPCname, '\0', sizeof(NPCname));
if (!message || !*message || sscanf(message, "%23[^\n]", NPCname) < 1) {
- clif_displaymessage(fd, "Please, enter a NPC name (usage: @npcoff <NPC_name>).");
+ clif_displaymessage(fd, "Please, enter a NPC name (usage: @hidenpc <NPC_name>).");
return -1;
}
@@ -8355,6 +8355,7 @@ atcommand_clearweather( map[sd->bl.m].flag.fireworks=0;
map[sd->bl.m].flag.leaves=0;
clif_weather(sd->bl.m);
+ clif_displaymessage(fd, msg_txt(291));
return 0;
}
|