Adds spaces around logical operators (#72603)

## About The Pull Request
Part of a prior PR that was closed (#72562). This version does not add
the check in CI.
## Why It's Good For The Game
The work is already done, so I figured why not.
## Changelog
N/A Nothing player facing

Co-authored-by: Jeremiah Snow <jlsnow301@pm.me>
Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com>
This commit is contained in:
Jeremiah
2023-01-16 16:56:35 -08:00
committed by GitHub
parent f529fb6a54
commit 872e64fb05
118 changed files with 193 additions and 193 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