feat(mobile): Makes paralyze/freeze virtual (#423)
- [X] Makes paralyze/freeze virtual
This commit is contained in:
parent
f3e53bfd7b
commit
3cc09bf606
1 changed files with 2 additions and 2 deletions
|
|
@ -3826,7 +3826,7 @@ namespace Server
|
|||
Paralyzed = false;
|
||||
}
|
||||
|
||||
public void Paralyze(TimeSpan duration)
|
||||
public virtual void Paralyze(TimeSpan duration)
|
||||
{
|
||||
if (!m_Paralyzed)
|
||||
{
|
||||
|
|
@ -3842,7 +3842,7 @@ namespace Server
|
|||
Frozen = false;
|
||||
}
|
||||
|
||||
public void Freeze(TimeSpan duration)
|
||||
public virtual void Freeze(TimeSpan duration)
|
||||
{
|
||||
if (!m_Frozen)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue