Fixes dupe exception (#258)
- [X] Cleans up ActivatorUtil - [X] Fixes dupe exception - [X] Fixes a bug in BasePotion - [X] Fixes a few possible memory leaks Bumps release version
This commit is contained in:
parent
4d6e584b6c
commit
e9c1e4cbba
66 changed files with 597 additions and 496 deletions
|
|
@ -91,7 +91,7 @@ namespace Server.Spells
|
|||
|
||||
try
|
||||
{
|
||||
spm = ActivatorUtil.CreateInstance(type) as SpecialMove;
|
||||
spm = type.CreateInstance<SpecialMove>();
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
|
@ -139,9 +139,9 @@ namespace Server.Spells
|
|||
|
||||
try
|
||||
{
|
||||
return (Spell)ActivatorUtil.CreateInstance(t, m_Params);
|
||||
return t.CreateInstance<Spell>(m_Params);
|
||||
}
|
||||
catch (Exception e)
|
||||
catch
|
||||
{
|
||||
// ignored
|
||||
}
|
||||
|
|
@ -167,7 +167,7 @@ namespace Server.Spells
|
|||
|
||||
try
|
||||
{
|
||||
return (Spell)ActivatorUtil.CreateInstance(t, m_Params);
|
||||
return t.CreateInstance<Spell>(m_Params);
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue