This commit is contained in:
Christoph Oelckers 2013-12-01 01:43:50 +01:00
commit a915c934b5
3 changed files with 12 additions and 1 deletions

View file

@ -1018,6 +1018,7 @@ CCMD (playerinfo)
if (!playeringame[i])
{
Printf(TEXTCOLOR_ORANGE "Player %d is not in the game\n", i);
return;
}
// Print special info

View file

@ -608,6 +608,11 @@ void R_ProjectSprite (AActor *thing, int fakeside, F3DFloor *fakefloor, F3DFloor
}
}
}
if (spritescaleX < 0)
{
spritescaleX = -spritescaleX;
flip = !flip;
}
if (voxel == NULL && (tex == NULL || tex->UseType == FTexture::TEX_Null))
{
return;

View file

@ -776,8 +776,13 @@ void FTextureManager::ParseAnimatedDoor(FScanner &sc)
{
sc.ScriptError ("Unknown texture %s", sc.String);
}
frames.Push (v);
}
frames.Push(v);
if (!sc.CheckString("allowdecals"))
{
Texture(v)->bNoDecals = true;
}
}
else
{