summaryrefslogtreecommitdiff
path: root/src/enemy/moldworm.c
diff options
context:
space:
mode:
authoroctorock <79596758+octorock@users.noreply.github.com>2024-01-06 16:14:12 +0100
committeroctorock <79596758+octorock@users.noreply.github.com>2024-01-06 16:15:34 +0100
commit06dc15859867c7f2db22ea6e289e28ff12b0b6c9 (patch)
treeae4991dfff60d689953033fb75345cc65628684a /src/enemy/moldworm.c
parentaced0bef691dbc41bdd39b6e62662d2436877a4b (diff)
Rename vvv to actTile
Diffstat (limited to 'src/enemy/moldworm.c')
-rw-r--r--src/enemy/moldworm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/enemy/moldworm.c b/src/enemy/moldworm.c
index 606b0cb3..f5e2dc05 100644
--- a/src/enemy/moldworm.c
+++ b/src/enemy/moldworm.c
@@ -186,7 +186,7 @@ void sub_08023288(MoldwormEntity* this) {
for (i = 0; i < 0x10; i++) {
u32 x = gPlayerEntity.base.x.HALF.HI + gUnk_080CBC70[idx + 0];
u32 y = gPlayerEntity.base.y.HALF.HI + gUnk_080CBC70[idx + 1];
- if (sub_08023A38(GetTileTypeByPos(x, y, gPlayerEntity.base.collisionLayer))) {
+ if (sub_08023A38(GetTileTypeAtWorldCoords(x, y, gPlayerEntity.base.collisionLayer))) {
sub_08023990(this, x, y);
return;
}
@@ -221,7 +221,7 @@ void sub_08023398(MoldwormEntity* this) {
}
if (--this->unk_78.HWORD == 0) {
- if (sub_08023A38(GetTileTypeByEntity(super))) {
+ if (sub_08023A38(GetTileTypeAtEntity(super))) {
super->action = 5;
this->unk_7f = 0;
COLLISION_OFF(super);
@@ -517,8 +517,8 @@ bool32 sub_08023A38(u32 tileType) {
if (tileType == TILE_TYPE_26 || tileType == TILE_TYPE_41) {
return TRUE;
} else {
- tileType = gMapTileTypeToVvv[tileType];
- if (tileType == VVV_9 || tileType == VVV_11 || tileType == VVV_10 || tileType == VVV_12) {
+ tileType = gMapTileTypeToActTile[tileType];
+ if (tileType == ACT_TILE_9 || tileType == ACT_TILE_11 || tileType == ACT_TILE_10 || tileType == ACT_TILE_12) {
return TRUE;
} else {
return FALSE;