In case you want to fix your copy right away instead of waiting for me to put out a new release, here is the change. Just a few lines around line 299 in storage.rb:
--- components/storage.rb (revision 111)
+++ components/storage.rb (working copy)
@@ -297,7 +297,11 @@
game_objects << object
unless object.container.nil? or game_objects.loaded? object.container
- load_object(object.container, game_objects)
+ begin
+ load_object(object.container, game_objects)
+ rescue MUDError::NoSuchGOID, MUDError::ObjectLoadError
+ object.container = Config.start_room
+ end
end
return object
end