Updated isplacablesprite() in editor

This commit is contained in:
Rob Pearce 2008-10-15 05:22:43 +00:00
parent 6b33fbe7de
commit 8731e2fd1a
2 changed files with 6 additions and 2 deletions

View File

@ -25,8 +25,6 @@ monsters
15 25 17
15 14 17
15 13 17
6 23 17
6 25 14
6 12 15
6 17 13
1 35 28

6
edit.c
View File

@ -1047,9 +1047,15 @@ int isplacablesprite(int sid) {
case P_BIGSPEED:
case P_MOVINGCARD:
case P_FIVECARDS:
case P_MASKPOWERUP:
case P_MASK:
case P_TAP:
return B_FALSE;
}
if (iseffect(sid)) {
return B_FALSE;
}
if (iscard(sid)) {
return B_FALSE;
}