From 91358aa4bf2deaf32f470966646f6d1f22607c8e Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Thu, 4 Dec 2008 18:21:19 +0000 Subject: [PATCH] The model might contain all kinds of useful stuff that we just resolved and that the resolution of the 'extras' object can make use of. Let's send it in since we have it. git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@784 c613c5cb-e716-0410-b11b-feb51c14d237 --- src/java/com/threerings/whirled/server/SceneRegistry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/whirled/server/SceneRegistry.java b/src/java/com/threerings/whirled/server/SceneRegistry.java index 21ac9520..4c8b8e2d 100644 --- a/src/java/com/threerings/whirled/server/SceneRegistry.java +++ b/src/java/com/threerings/whirled/server/SceneRegistry.java @@ -171,7 +171,7 @@ public class SceneRegistry @Override public void invokePersist () throws Exception { _model = _screp.loadSceneModel(fsceneId); _updates = _screp.loadUpdates(fsceneId); - _extras = _screp.loadExtras(fsceneId); + _extras = _screp.loadExtras(fsceneId, _model); } @Override public void handleSuccess () { processSuccessfulResolution(_model, _updates, _extras);