TINSEL: Remove redundant assert check in SetHookScene

In the original, a second SetHookScene call can validly occur due to first
placing the cover-switched book in the bookcase, and then by the thief
leaving if his arrival happens immediately.
This commit is contained in:
Paul Gilbert 2015-12-01 21:48:14 -05:00
parent 2e3ecb1be8
commit bf4ab6d52a

View File

@ -528,8 +528,6 @@ void SetNewScene(SCNHANDLE scene, int entrance, int transition) {
* Store a scene as hooked
*/
void SetHookScene(SCNHANDLE scene, int entrance, int transition) {
assert(g_HookScene.scene == 0); // scene already hooked
g_HookScene.scene = scene;
g_HookScene.entry = entrance;
g_HookScene.trans = transition;