fix(core): Removes implicit cast between Serial and uint (#728)
* Fixes spellbooks using serial ctor * Fixes misc items where someone thought they had an amount and it didn't * Fixes all `Food` types.
This commit is contained in:
parent
17521c9cd7
commit
0dc4acc164
74 changed files with 319 additions and 248 deletions
|
|
@ -1029,7 +1029,7 @@ namespace Server.Accounting
|
|||
try
|
||||
{
|
||||
var index = Utility.GetXMLInt32(Utility.GetAttribute(ele, "index", "0"), 0);
|
||||
var serial = Utility.GetXMLUInt32(Utility.GetText(ele, "0"), 0);
|
||||
var serial = (Serial)Utility.GetXMLUInt32(Utility.GetText(ele, "0"), 0);
|
||||
|
||||
if (index >= 0 && index < list.Length)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue