[MIRROR] Adds spaces around logical operators [MDB IGNORE] (#18776)

* Adds spaces around logical operators

* Update code/modules/admin/verbs/admingame.dm

Co-authored-by: Jeremiah <42397676+jlsnow301@users.noreply.github.com>
Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com>
This commit is contained in:
SkyratBot
2023-01-21 22:16:43 -08:00
committed by GitHub
co-authored by Jeremiah Tom
parent b2e7e489cb
commit c5ca08fd01
117 changed files with 192 additions and 192 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
icon = 'icons/effects/blood.dmi'
/obj/effect/decal/remains/acid_act()
visible_message(span_warning("[src] dissolve[gender==PLURAL?"":"s"] into a puddle of sizzling goop!"))
visible_message(span_warning("[src] dissolve[gender == PLURAL?"":"s"] into a puddle of sizzling goop!"))
playsound(src, 'sound/items/welder.ogg', 150, TRUE)
new /obj/effect/decal/cleanable/greenglow(drop_location())
qdel(src)
+1 -1
View File
@@ -209,7 +209,7 @@ GLOBAL_VAR_INIT(glowshrooms, 0)
var/list/dir_list = list()
for(var/i=1,i<=16,i <<= 1)
for(var/i=1,i <= 16,i <<= 1)
if(direction & i)
dir_list += i
+1 -1
View File
@@ -4,7 +4,7 @@
var/turf/actual_destination = get_teleport_turf(destination, accuracy)
var/obj/effect/portal/P1 = new newtype(source, _lifespan, null, FALSE, null)
var/obj/effect/portal/P2 = new newtype(actual_destination, _lifespan, P1, TRUE, null)
if(!istype(P1)||!istype(P2))
if(!istype(P1) || !istype(P2))
return
P1.link_portal(P2)
P1.hardlinked = TRUE