[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-22 07:16:43 +01:00
committed by GitHub
parent b2e7e489cb
commit c5ca08fd01
117 changed files with 192 additions and 192 deletions
@@ -310,7 +310,7 @@ SUBSYSTEM_DEF(networks)
#ifdef DEBUG_NETWORKS
ASSERT(tree && tree.len > 0) // this should be obvious but JUST in case.
for(var/part in tree)
if(!verify_network_name(part) || findtext(name,".")!=0) // and no stray dots
if(!verify_network_name(part) || findtext(name,".") != 0) // and no stray dots
stack_trace("network_list_to_string: Cannot create network with ([part]) of ([tree.Join(".")])")
break
#endif
@@ -379,7 +379,7 @@ SUBSYSTEM_DEF(networks)
/datum/controller/subsystem/networks/proc/create_network_simple(network_id)
var/datum/ntnet/network = networks[network_id]
if(network!=null)
if(network != null)
return network // don't worry about it
/// Checks to make sure the network is valid. We log BOTH to mapping and telecoms