diff --git a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/attachments/AtlasAttachmentLoader.java b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/attachments/AtlasAttachmentLoader.java index 31ff355a2..496452311 100644 --- a/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/attachments/AtlasAttachmentLoader.java +++ b/spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/attachments/AtlasAttachmentLoader.java @@ -64,7 +64,7 @@ public class AtlasAttachmentLoader implements AttachmentLoader { public WeightedMeshAttachment newWeightedMeshAttachment (Skin skin, String name, String path) { AtlasRegion region = atlas.findRegion(path); if (region == null) - throw new RuntimeException("Region not found in atlas: " + path + " (skinned mesh attachment: " + name + ")"); + throw new RuntimeException("Region not found in atlas: " + path + " (weighted mesh attachment: " + name + ")"); WeightedMeshAttachment attachment = new WeightedMeshAttachment(name); attachment.setRegion(region); return attachment;