From 85a82bc6e8243a8f0e83a951f45f1f249736fce1 Mon Sep 17 00:00:00 2001 From: "Eevee (Lexy Munroe)" Date: Thu, 21 Jan 2016 16:45:58 -0800 Subject: [PATCH] Fix minor typo in comments --- src/p_acs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } }