nothing noteworthy, really.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16397 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
shennetsind 2012-07-11 14:37:50 +00:00
parent c7083d9ecc
commit 199c5acb6f

View File

@ -1121,17 +1121,18 @@ int npc_click(struct map_session_data* sd, struct npc_data* nd)
return 1; return 1;
switch(nd->subtype) { switch(nd->subtype) {
case SHOP: case SHOP:
clif_npcbuysell(sd,nd->bl.id); clif_npcbuysell(sd,nd->bl.id);
break; break;
case CASHSHOP: case CASHSHOP:
clif_cashshop_show(sd,nd); clif_cashshop_show(sd,nd);
break; break;
case SCRIPT: case SCRIPT:
run_script(nd->u.scr.script,0,sd->bl.id,nd->bl.id); run_script(nd->u.scr.script,0,sd->bl.id,nd->bl.id);
break; break;
case TOMB: case TOMB:
run_tomb(sd,nd); run_tomb(sd,nd);
break;
} }
return 0; return 0;