Minor details (pdb file location, improved debug, npc typo)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9771 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ultramage 2007-02-02 00:12:43 +00:00
parent 4130bdd3b8
commit 71ca66f8b1
4 changed files with 4 additions and 3 deletions

View File

@ -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. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2007/02/01 2007/02/01
* Minor details (pdb file location, improved debug, npc typo)
* Cleaned up the npcshop(add/del)item script commands, fixed a possible * Cleaned up the npcshop(add/del)item script commands, fixed a possible
dangling pointer crash caused by their improper use of realloc. They no dangling pointer crash caused by their improper use of realloc. They no
longer automatically attach the script to the shop, and they will return longer automatically attach the script to the shop, and they will return

View File

@ -192,7 +192,7 @@ s_Guide:
s_Yes: s_Yes:
set @tempguide,1; set @tempguide,1;
s_Cont: s_Cont:
menu "^FF0000Rekenber Corporation",s_Rekenber,"^000000Train Station",s_Train,"Police Station",s_Police,"Bank",s_Bank,"Hotel",s_Hotel,"Airport",s_Airport,"Merchant Guild",s_Merchant,"Jewel Shop",s_Jewel,"Weapon Shop",s_Weap,"Department Store",s_Store,"Cancel",-; menu "^FF0000Rekenber Corporation^000000",s_Rekenber,"Train Station",s_Train,"Police Station",s_Police,"Bank",s_Bank,"Hotel",s_Hotel,"Airport",s_Airport,"Merchant Guild",s_Merchant,"Jewel Shop",s_Jewel,"Weapon Shop",s_Weap,"Department Store",s_Store,"Cancel",-;
mes "[Lighthalzen Guide]"; mes "[Lighthalzen Guide]";
mes "Please ask me to \"Remove"; mes "Please ask me to \"Remove";

View File

@ -3182,7 +3182,7 @@ int pc_show_steal(struct block_list *bl,va_list ap)
itemid=va_arg(ap,int); itemid=va_arg(ap,int);
if((item=itemdb_exists(itemid))==NULL) if((item=itemdb_exists(itemid))==NULL)
sprintf(output,"%s stole an Unknown Item.",sd->status.name); sprintf(output,"%s stole an Unknown Item (id: %i).",sd->status.name, itemid);
else else
sprintf(output,"%s stole %s.",sd->status.name,item->jname); sprintf(output,"%s stole %s.",sd->status.name,item->jname);
clif_displaymessage( ((struct map_session_data *)bl)->fd, output); clif_displaymessage( ((struct map_session_data *)bl)->fd, output);

View File

@ -73,7 +73,7 @@
AdditionalLibraryDirectories="..\lib" AdditionalLibraryDirectories="..\lib"
IgnoreAllDefaultLibraries="true" IgnoreAllDefaultLibraries="true"
GenerateDebugInformation="true" GenerateDebugInformation="true"
ProgramDatabaseFile="$(OutDir)\$(ProjectName).pdb" ProgramDatabaseFile="$(OutDir)\map-server.pdb"
SubSystem="1" SubSystem="1"
TargetMachine="1" TargetMachine="1"
/> />