feat(mobile): Makes paralyze/freeze virtual (#423)

- [X] Makes paralyze/freeze virtual
This commit is contained in:
Michael Whelehan 2021-01-20 19:38:47 +01:00 committed by GitHub
parent f3e53bfd7b
commit 3cc09bf606
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)
{