Skip to content

Commit

Permalink
EntityTag.describe: include script name
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed May 30, 2021
1 parent 08dc710 commit dd8951a
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -2582,7 +2582,9 @@ public EntityTag describe() {
else {
waitingMechs = new ArrayList<>(getWaitingMechanisms());
}
return new EntityTag(entity_type, waitingMechs);
EntityTag entity = new EntityTag(entity_type, waitingMechs);
entity.entityScript = entityScript;
return entity;
}

public static ObjectTagProcessor<EntityTag> tagProcessor = new ObjectTagProcessor<>();
Expand Down

0 comments on commit dd8951a

Please sign in to comment.