mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
[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:
co-authored by
Jeremiah
Tom
parent
b2e7e489cb
commit
c5ca08fd01
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user