diff --git a/src/p_acs.cpp b/src/p_acs.cpp index 2c3c4e1e30..8725303a0a 100644 --- a/src/p_acs.cpp +++ b/src/p_acs.cpp @@ -4158,7 +4158,7 @@ bool DLevelScript::DoCheckActorTexture(int tid, AActor *activator, int string, b tex == TexMan[*ff->top.texture] && z <= ff->top.plane->ZatPoint(actor->x, actor->y) && z >= ff->bottom.plane->ZatPoint(actor->x, actor->y)) - { // Having your feet within a liquid count as being "on" it + { // Having your feet within a liquid counts as being "on" it return true; } } @@ -4188,7 +4188,7 @@ bool DLevelScript::DoCheckActorTexture(int tid, AActor *activator, int string, b tex == TexMan[*ff->bottom.texture] && z <= ff->top.plane->ZatPoint(actor->X(), actor->Y()) && z >= ff->bottom.plane->ZatPoint(actor->X(), actor->Y())) - { // Having your eyes within a liquid count as being "under" it + { // Having your eyes within a liquid counts as being "under" it return true; } }