Browse Source

minor fix in applyRec

Nicolas Cannasse 5 years ago
parent
commit
00fd542b06
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hxd/res/DynamicText.hx

+ 1 - 1
hxd/res/DynamicText.hx

@@ -126,7 +126,7 @@ class DynamicText {
 			if( ref != null ) {
 				refIds = new Map();
 				for( x in ref.elements ) {
-					var id = x.att.id;
+					var id = x.x.get("id");
 					if( id != null ) refIds.set(id, x);
 				}
 			}