changed moving sign code so it doesn't modify the sign itself.

This commit is contained in:
Philip
2010-11-01 23:56:06 -04:00
parent 176ecb1197
commit 4e46f51bcf
4 changed files with 8 additions and 6 deletions

View File

@@ -90,7 +90,7 @@ extern int death;
struct sign
{
int x,y,ju,m;
int x,y,ju;
char text[256];
};
typedef struct sign sign;
@@ -103,6 +103,7 @@ struct stamp
};
typedef struct stamp stamp;
int MSIGN;
extern sign signs[MAXSIGNS];
extern stamp stamps[STAMP_MAX];
extern int stamp_count;