fix: use right type for number
This commit is contained in:
parent
62d9684944
commit
9d589dba8f
2 changed files with 2 additions and 2 deletions
|
@ -584,7 +584,7 @@ return {
|
|||
properties = {
|
||||
["category"] = "medicines",
|
||||
["item"] = "healthseed",
|
||||
["number"] = "5"
|
||||
["number"] = 5
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
<properties>
|
||||
<property name="category" value="medicines"/>
|
||||
<property name="item" value="healthseed"/>
|
||||
<property name="number" value="5"/>
|
||||
<property name="number" type="int" value="5"/>
|
||||
</properties>
|
||||
</object>
|
||||
</objectgroup>
|
||||
|
|
Loading…
Reference in a new issue