First fork commit
This commit is contained in:
parent
02fa088b24
commit
b3c65f9fc6
7 changed files with 37 additions and 20 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -1,16 +0,0 @@
|
|||
name: build
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
luacheck:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install Luarocks
|
||||
run: |
|
||||
sudo apt-get update -qyy
|
||||
sudo apt-get install luarocks -qyy
|
||||
- name: Install Luacheck
|
||||
run: luarocks install --local luacheck
|
||||
- name: Run Luacheck
|
||||
run: $HOME/.luarocks/bin/luacheck mods
|
3
.idea/.gitignore
vendored
Normal file
3
.idea/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
9
.idea/capturetheflag.iml
Normal file
9
.idea/capturetheflag.iml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
6
.idea/misc.xml
Normal file
6
.idea/misc.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
8
.idea/modules.xml
Normal file
8
.idea/modules.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/capturetheflag.iml" filepath="$PROJECT_DIR$/.idea/capturetheflag.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
9
.idea/vcs.xml
Normal file
9
.idea/vcs.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$/mods/ctf/ctf_map/ctf_map_core/maps" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$/mods/other/crafting" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$/mods/pvp/shooter" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
|
@ -1,6 +1,4 @@
|
|||
# Capture The Flag
|
||||
|
||||
[![Build status](https://github.com/MT-CTF/capturetheflag/workflows/build/badge.svg)](https://github.com/MT-CTF/capturetheflag/actions)
|
||||
# Capture The Flag (Fork)
|
||||
|
||||
* Fast rounds of CTF games.
|
||||
* Removed nodes for focus.
|
||||
|
@ -10,7 +8,7 @@
|
|||
Capture the flag uses several submodules. Make sure to grab them all by cloning like this:
|
||||
|
||||
```sh
|
||||
git clone --recursive https://github.com/MT-CTF/capturetheflag.git
|
||||
git clone --recursive https://git.sp-codes.de/philipmi/capturetheflag.git
|
||||
```
|
||||
|
||||
## System Requirements
|
||||
|
|
Loading…
Reference in a new issue