summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authoramber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-01 21:40:11 +0000
committeramber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-01 21:40:11 +0000
commit0073a0c0267b57250645bf3e0ed5a7ac4aa7463b (patch)
tree7ab0376dcff8b7fe62eb60d52aa4ac89fb29f35e /src/map/atcommand.c
parent207277be0ac9c73626adc9cf8a6841a3dffe67ef (diff)
downloadhercules-0073a0c0267b57250645bf3e0ed5a7ac4aa7463b.tar.gz
hercules-0073a0c0267b57250645bf3e0ed5a7ac4aa7463b.tar.bz2
hercules-0073a0c0267b57250645bf3e0ed5a7ac4aa7463b.tar.xz
hercules-0073a0c0267b57250645bf3e0ed5a7ac4aa7463b.zip
Fix some build issues
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@432 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 34bf0150d..dfedea102 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -2762,12 +2762,8 @@ int atcommand_go(
char output[200];
int m;
- if(map[sd->bl.m].flag.nogo) {
- clif_displaymessage(sd->fd,"You can not use @go on this map.");
- return 0;
- }
- struct { char map[16]; int x, y; } data[] = {
+ const struct { char map[16]; int x, y; } data[] = {
{ "prontera.gat", 156, 191 }, // 0=Prontera
{ "morocc.gat", 156, 93 }, // 1=Morroc
{ "geffen.gat", 119, 59 }, // 2=Geffen
@@ -2787,6 +2783,11 @@ int atcommand_go(
{ "sec_pri.gat", 23, 61 }, // 16=Prison
};
+ if(map[sd->bl.m].flag.nogo) {
+ clif_displaymessage(sd->fd,"You can not use @go on this map.");
+ return 0;
+ }
+
memset(map_name, '\0', sizeof(map_name));
memset(output, '\0', sizeof(output));
@@ -7198,6 +7199,7 @@ atcommand_skilltree(const int fd, struct map_session_data* sd,
struct pc_base_job s_class;
char target[255], *tbl;
char output[255];
+ struct skill_tree_entry *ent;
if (!message || !*message)
return -1;
@@ -7235,7 +7237,7 @@ atcommand_skilltree(const int fd, struct map_session_data* sd,
return 0;
}
- struct skill_tree_entry *ent = &skill_tree[s][c][skillidx];
+ ent = &skill_tree[s][c][skillidx];
for(j=0;j<5;j++)
if( ent->need[j].id &&
@@ -7690,8 +7692,10 @@ atcommand_identify(
const int fd, struct map_session_data* sd,
const char* command, const char* message)
{
- nullpo_retr(-1, sd);
int i,num;
+
+ nullpo_retr(-1, sd);
+
for(i=num=0;i<MAX_INVENTORY;i++){
if(sd->status.inventory[i].nameid > 0 && sd->status.inventory[i].identify!=1){
num++;