diff options
author | huderlem <huderlem@gmail.com> | 2019-03-01 08:43:55 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-01 08:43:55 -0600 |
commit | 3b04cfa437b093a21cdc5021843b5f52a124861e (patch) | |
tree | 1e1e832d7852953a68d0d949dcb9fba61164e37c /src/scrcmd.c | |
parent | da0687987d8d4f6cb9a331f30553ffb806e74165 (diff) | |
parent | 459fd93b59795c0c9c888584d38e82577e07c056 (diff) |
Merge pull request #551 from Phlosioneer/multiplayer-stuff
Document overworld.c and link stuff in general
Diffstat (limited to 'src/scrcmd.c')
-rw-r--r-- | src/scrcmd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scrcmd.c b/src/scrcmd.c index b80b2baed..6df835bad 100644 --- a/src/scrcmd.c +++ b/src/scrcmd.c @@ -1203,7 +1203,7 @@ bool8 ScrCmd_turnvobject(struct ScriptContext *ctx) bool8 ScrCmd_lockall(struct ScriptContext *ctx) { - if (is_c1_link_related_active()) + if (IsUpdateLinkStateCBActive()) { return FALSE; } @@ -1217,7 +1217,7 @@ bool8 ScrCmd_lockall(struct ScriptContext *ctx) bool8 ScrCmd_lock(struct ScriptContext *ctx) { - if (is_c1_link_related_active()) + if (IsUpdateLinkStateCBActive()) { return FALSE; } @@ -2182,7 +2182,7 @@ bool8 ScrCmd_cmdD8(struct ScriptContext *ctx) bool8 ScrCmd_cmdD9(struct ScriptContext *ctx) { - if (is_c1_link_related_active()) + if (IsUpdateLinkStateCBActive()) { return FALSE; } |