mirror of
https://github.com/GTAmodding/re3.git
synced 2021-02-19 17:49:54 +01:00
fix SURFACE_SAND
This commit is contained in:
parent
895580c724
commit
98af5e4ddb
@ -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 )
|
||||
|
Loading…
Reference in New Issue
Block a user