Skip to content

Commit

Permalink
Fix the typo in the access to the script boolean id
Browse files Browse the repository at this point in the history
  • Loading branch information
madhephaestus committed Jul 10, 2024
1 parent c147d6b commit f35e1fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public VitaminLocation(Element vitamins) {
setName(XmlFactory.getTagValue("name", vitamins));
setType(XmlFactory.getTagValue("type", vitamins));
setSize(XmlFactory.getTagValue("id", vitamins));
String scriptyness=XmlFactory.getTagValue("id", vitamins);
String scriptyness=XmlFactory.getTagValue("script", vitamins);
if(scriptyness==null) {
isScript=false;
}else{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1799,6 +1799,7 @@
<frame>default</frame>
<script>true</script>
</vitamin>

</vitamins>

</mobilebase>
Expand Down

0 comments on commit f35e1fa

Please sign in to comment.