diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2024-01-06 16:14:12 +0100 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2024-01-06 16:15:34 +0100 |
| commit | 06dc15859867c7f2db22ea6e289e28ff12b0b6c9 (patch) | |
| tree | ae4991dfff60d689953033fb75345cc65628684a /src/manager/flameManager.c | |
| parent | aced0bef691dbc41bdd39b6e62662d2436877a4b (diff) | |
Rename vvv to actTile
Diffstat (limited to 'src/manager/flameManager.c')
| -rw-r--r-- | src/manager/flameManager.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/manager/flameManager.c b/src/manager/flameManager.c index c8174afd..6140730e 100644 --- a/src/manager/flameManager.c +++ b/src/manager/flameManager.c @@ -15,18 +15,18 @@ void FlameManager_Main(FlameManager* this) { if (super->action == 0) { this->tilePos = TILE(this->tilePos, this->field_0x3a); - if (GetTileType(this->tilePos, LAYER_TOP) == TILE_TYPE_117) { + if (GetTileTypeAtTilePos(this->tilePos, LAYER_TOP) == TILE_TYPE_117) { super->action = 1; SetTile(SPECIAL_TILE_106, this->tilePos, LAYER_BOTTOM); } else { DeleteThisEntity(); } } - if (GetTileType(this->tilePos, LAYER_BOTTOM) == SPECIAL_TILE_107) { + if (GetTileTypeAtTilePos(this->tilePos, LAYER_BOTTOM) == SPECIAL_TILE_107) { sub_0807B7D8(TILE_TYPE_118, this->tilePos, LAYER_TOP); DeleteThisEntity(); } - if (GetTileType(this->tilePos, LAYER_TOP) == TILE_TYPE_118) { + if (GetTileTypeAtTilePos(this->tilePos, LAYER_TOP) == TILE_TYPE_118) { SetTile(SPECIAL_TILE_107, this->tilePos, LAYER_BOTTOM); DeleteThisEntity(); } |
