Fix potential future bug

This commit is contained in:
Duncan Frost 2015-03-26 22:08:56 +00:00
parent 112290ca0c
commit 0e04189951
1 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,8 @@ void map_animation_create(int type, int x, int y, int z)
continue;
if (aobj->baseZ != z)
continue;
if (aobj->type != type)
continue;
// Animation already exists
return;
}