From ce893d2cd4789434535b41e44a926d913bd4ab6a Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Tue, 19 Sep 2023 07:29:36 -0400 Subject: [PATCH] - remove some double semicolons --- wadsrc/static/zscript/actors/doom/doomdecorations.zs | 6 +++--- wadsrc/static/zscript/actors/inventory/powerups.zs | 2 +- wadsrc/static/zscript/ui/statscreen/statscreen.zs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wadsrc/static/zscript/actors/doom/doomdecorations.zs b/wadsrc/static/zscript/actors/doom/doomdecorations.zs index 8eec812f6b..ab5bd5b4f5 100644 --- a/wadsrc/static/zscript/actors/doom/doomdecorations.zs +++ b/wadsrc/static/zscript/actors/doom/doomdecorations.zs @@ -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 } diff --git a/wadsrc/static/zscript/actors/inventory/powerups.zs b/wadsrc/static/zscript/actors/inventory/powerups.zs index 67983aae80..9c4903d011 100644 --- a/wadsrc/static/zscript/actors/inventory/powerups.zs +++ b/wadsrc/static/zscript/actors/inventory/powerups.zs @@ -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 diff --git a/wadsrc/static/zscript/ui/statscreen/statscreen.zs b/wadsrc/static/zscript/ui/statscreen/statscreen.zs index 500185ee08..4b50f0cf7b 100644 --- a/wadsrc/static/zscript/ui/statscreen/statscreen.zs +++ b/wadsrc/static/zscript/ui/statscreen/statscreen.zs @@ -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; } //====================================================================