From 1e7f6277c20c47cde94d5f5326297d66d98ac0e6 Mon Sep 17 00:00:00 2001 From: NathanSweet Date: Sat, 27 Feb 2016 02:13:38 +0100 Subject: [PATCH] Updated error message. --- .../spine/attachments/AtlasAttachmentLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;