1
0
mirror of https://github.com/td512/re3.git synced 2026-03-03 08:05:02 +00:00

fix SURFACE_SAND

This commit is contained in:
Fire-Head
2020-05-28 00:28:36 +03:00
parent 895580c724
commit 98af5e4ddb

View File

@@ -2884,7 +2884,7 @@ CWaterLevel::HandleBeachToysStuff(void)
if ( GetGroundLevel(vecPos, &fGroundLevel, &coldata, 30.0f) )
{
if ( coldata.SurfaceType == 18 )
if ( coldata.SurfaceType == SURFACE_SAND )
{
CEntity *toy = CreateBeachToy(vecPos, BEACHTOY_BALL);
@@ -2928,7 +2928,7 @@ CWaterLevel::HandleBeachToysStuff(void)
if ( GetGroundLevel(vecPos, &fGroundLevel, &coldata, 30.0f) )
{
if ( coldata.SurfaceType == 18 )
if ( coldata.SurfaceType == SURFACE_SAND )
{
CEntity *toy = CreateBeachToy(vecPos, BEACHTOY_LOUNGE);
if ( toy )