From 25be8e02df5659497172a1dbda775d34a675d548 Mon Sep 17 00:00:00 2001 From: Mike Thomas Date: Fri, 23 May 2008 01:11:29 +0000 Subject: [PATCH] Need to include the bundle's ident in our lookup to the resource list. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@501 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/java/com/threerings/resource/NetworkResourceBundle.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/resource/NetworkResourceBundle.java b/src/java/com/threerings/resource/NetworkResourceBundle.java index 8bb79f6c..645a86f9 100644 --- a/src/java/com/threerings/resource/NetworkResourceBundle.java +++ b/src/java/com/threerings/resource/NetworkResourceBundle.java @@ -67,6 +67,7 @@ public class NetworkResourceBundle extends ResourceBundle { // If we can reject it before opening a connection, then save the network latency. if (!inResourceList(path)) { + System.err.println("MST Failed find: " + _ident + " : " + path); return null; } @@ -110,7 +111,7 @@ public class NetworkResourceBundle extends ResourceBundle */ protected boolean inResourceList (String path) { - return _rsrcList == null || _rsrcList.contains(path); + return _rsrcList == null || _rsrcList.contains(_ident + path); } /**