MCPcopy Create free account
hub / github.com/BrettMayson/Arma3Server / mods

Function mods

local.py:6–16  ·  view source on GitHub ↗
(d)

Source from the content-addressed store, hash-verified

4
5
6def mods(d):
7 mods = []
8
9 # Find mod folders
10 for m in os.listdir(d):
11 moddir = os.path.join(d, m)
12 if os.path.isdir(moddir):
13 mods.append(moddir)
14 keys.copy(moddir)
15
16 return mods

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected