* passing of extra damageDecl values from radiusDamage() calls * add fun cg_modelSpin/Bob cvars * NSActor::MaxAmmo(int) added * NSItem::ItemPickUpCheck(entity) added * base/ cleanup
11 lines
119 B
Bash
Executable file
11 lines
119 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]
|
|
then
|
|
printf "Unknown\n"
|
|
else
|
|
if [ -f "$1/PLUGINS" ]
|
|
then
|
|
head -n 1 "$1/PLUGINS"
|
|
fi
|
|
fi
|