--- deliantra/server/common/loader.C 2007/07/31 17:33:14 1.93 +++ deliantra/server/common/loader.C 2007/07/31 20:03:33 1.94 @@ -642,7 +642,12 @@ case KW_sound: sound = sound_find (f.get_str ()); if (!sound) - sound = face_find (f.get_str ());//TODO: really fall back to face name? + { + //TODO: really fall back to face name? + char face[128]; + snprintf (face, 128, "sound/%s", f.get_str ()); + sound = face_find (face); + } break; case KW_x: f.get (x); break;