mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- remove some double semicolons
This commit is contained in:
parent
cfe30c1d47
commit
ce893d2cd4
3 changed files with 5 additions and 5 deletions
|
@ -82,7 +82,7 @@ class ShortGreenColumn : Actor
|
|||
Default
|
||||
{
|
||||
Radius 16;
|
||||
Height 40;;
|
||||
Height 40;
|
||||
ProjectilePassHeight -16;
|
||||
+SOLID
|
||||
}
|
||||
|
@ -234,7 +234,7 @@ class BlueTorch : Actor
|
|||
Default
|
||||
{
|
||||
Radius 16;
|
||||
Height 68;;
|
||||
Height 68;
|
||||
ProjectilePassHeight -16;
|
||||
+SOLID
|
||||
}
|
||||
|
@ -594,7 +594,7 @@ class HeadsOnAStick : Actor
|
|||
Default
|
||||
{
|
||||
Radius 16;
|
||||
Height 64;;
|
||||
Height 64;
|
||||
ProjectilePassHeight -16;
|
||||
+SOLID
|
||||
}
|
||||
|
|
|
@ -956,7 +956,7 @@ class PowerFlight : Powerup
|
|||
Owner.bNoGravity = true;
|
||||
if (Owner.pos.Z <= Owner.floorz)
|
||||
{
|
||||
Owner.Vel.Z = 4;; // thrust the player in the air a bit
|
||||
Owner.Vel.Z = 4; // thrust the player in the air a bit
|
||||
}
|
||||
if (Owner.Vel.Z <= -35)
|
||||
{ // stop falling scream
|
||||
|
|
|
@ -148,7 +148,7 @@ class StatusScreen : ScreenJob abstract version("2.5")
|
|||
scalemode = FSMode_ScaleToFit43;
|
||||
scalefactorx = 1;
|
||||
scalefactory = 1;
|
||||
wrapwidth = wrapw == -1 ? width : wrapw;;
|
||||
wrapwidth = wrapw == -1 ? width : wrapw;
|
||||
}
|
||||
|
||||
//====================================================================
|
||||
|
|
Loading…
Reference in a new issue