diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-03-18 08:44:27 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-03-18 08:44:27 +0000 |
commit | db15814cc463589087a9825dd6012126f89cb261 (patch) | |
tree | ae133d196b0a6d9ede41a9cd0c11b28d6257f9c5 /src/map/mob.c | |
parent | 5cf841f555c2d61390e4a3ff835b2c3eade84190 (diff) | |
download | hercules-db15814cc463589087a9825dd6012126f89cb261.tar.gz hercules-db15814cc463589087a9825dd6012126f89cb261.tar.bz2 hercules-db15814cc463589087a9825dd6012126f89cb261.tar.xz hercules-db15814cc463589087a9825dd6012126f89cb261.zip |
Fixed OnPCLoginEvent not working correctly (bugreport:1182).
Cleaned up some code typos/engrish.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12391 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 026f08c84..a26726b21 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -513,7 +513,7 @@ short mob_barricade_build(short m, short x, short y, short count, short dir, boo return 2; if( (barricade = (struct barricade_data *)strdb_get(barricade_db,event)) != NULL ) - return 3; // Allready a barricade with event name + return 3; // Already a barricade with event name if( map_getcell(m, x, y, CELL_CHKNOREACH) ) return 4; // Starting cell problem |