aboutsummaryrefslogtreecommitdiffstats
path: root/games/crossfire-server/Makefile
diff options
context:
space:
mode:
authorandreas <andreas@FreeBSD.org>1996-11-12 20:19:31 +0800
committerandreas <andreas@FreeBSD.org>1996-11-12 20:19:31 +0800
commit2ba5235ac1f7d1188efbe48ebbc88dad005c0a62 (patch)
treeb6c75910067949758b05481ee168f3e6336501f4 /games/crossfire-server/Makefile
parent64994a1b3f998e4fb2479734842b5e1aa728a90f (diff)
downloadfreebsd-ports-gnome-2ba5235ac1f7d1188efbe48ebbc88dad005c0a62.tar.gz
freebsd-ports-gnome-2ba5235ac1f7d1188efbe48ebbc88dad005c0a62.tar.zst
freebsd-ports-gnome-2ba5235ac1f7d1188efbe48ebbc88dad005c0a62.zip
A) From: "Brian Thomas" <thomas@astro.psu.edu>
Ok, I found the problem.. the artifact code assigns a level value to artifacts with kind "Berserkergang". The specialweapon/apply code, when it finds a weapon with a "level" immediately compares the title field to the weilder's name. If they dont match, it can't be used. I created a patch to remove the level designation from the artifact code since other named weaopns (cf "glamdri") dont have a level assigned. B) From: Klaus Elsbernd <elsbernd@dfki.uni-kl.de> In version 0.92.8 is a bug in the inventory-unlock-code, which prevents unlocking. C) From: myself make post-install target modified in Makefile, *$*HOME was eaten up by 'make' and displayed nonsense. Tell player to create the players dir in his login directory.
Diffstat (limited to 'games/crossfire-server/Makefile')
-rw-r--r--games/crossfire-server/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/games/crossfire-server/Makefile b/games/crossfire-server/Makefile
index 8415d56d8c57..c41e8949fc76 100644
--- a/games/crossfire-server/Makefile
+++ b/games/crossfire-server/Makefile
@@ -3,7 +3,7 @@
# Date created: So 27 Okt 1996 12:25:55 MET
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
#
-# $Id$
+# $Id: Makefile,v 1.5 1996/11/04 10:04:36 asami Exp $
#
DISTNAME= crossfire-0.92.8
@@ -66,13 +66,14 @@ post-install:
chown games.games ${PREFIX}/bin/crossfire
chmod 6555 ${PREFIX}/bin/crossfire
@echo ""
- @echo ""
@echo "======================================================"
@echo "===== ATTENTION BEFORE PLAYING ======================="
@echo "======================================================"
@echo "Create a players directory before playing crossfire, "
- @echo "otherwise crossfire cannot save your player character:"
- @echo "Type the following command as user: mkdir $HOME/players"
+ @echo "otherwise crossfire cannot save your player character !"
+ @echo "Type the following command as user in your login directory:"
+ @echo ""
+ @echo " $ mkdir players"
@echo ""
@echo "Read the docu, which is available in Postscript and HTML"
@echo "format in the directory ${CFDIR}/doc"