Remove total-ordering assumption.
This commit is contained in:
parent
a57d93ce35
commit
1329da1087
1 changed files with 1 additions and 1 deletions
2
misc.c
2
misc.c
|
@ -367,7 +367,7 @@ void MOVE(long object, long where)
|
||||||
from=game.fixed[object-NOBJECTS];
|
from=game.fixed[object-NOBJECTS];
|
||||||
else
|
else
|
||||||
from=game.place[object];
|
from=game.place[object];
|
||||||
if (from > NOWHERE && !SPECIAL(from))
|
if (from != NOWHERE && from != CARRIED && !SPECIAL(from))
|
||||||
CARRY(object,from);
|
CARRY(object,from);
|
||||||
DROP(object,where);
|
DROP(object,where);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue