Remove goal commands from a level's start script

This commit is contained in:
Sebastian Morr 2020-09-15 17:23:48 +02:00
parent 390e0f6c11
commit 5558823de1
2 changed files with 5 additions and 5 deletions

View file

@ -0,0 +1,5 @@
TREE=$(git write-tree)
SOUTH=$(git commit-tree $TREE -m "South")
EAST=$(git commit-tree $TREE -m "East" -p $SOUTH)
WEST=$(git commit-tree $TREE -m "West" -p $SOUTH)
NORTH=$(git commit-tree $TREE -m "Nort" -p $EAST -p $WEST)

View file

@ -1,5 +0,0 @@
TREE=$(git write-tree)
SOUTH=$(git commit-tree $TREE -m "South")
EAST=$(git commit-tree $TREE -m "East" -p $SOUTH)
WEST=$(git commit-tree $TREE -m "West" -p $SOUTH)
NORTH=$(git commit-tree $TREE -m "Nort" -p $EAST -p $WEST)