Wrong name ordering.

git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@6363 282e977c-c81d-0410-88c4-b93c2d0d6712
master
ryo_saeba 2007-05-28 21:13:54 +00:00
parent 79c1d06e55
commit 369769316a
1 changed files with 2 additions and 2 deletions

View File

@ -102,8 +102,8 @@ def move_chicken():
# drop an egg?
if random.randint(1, 100) <= ( got * 2 ):
egg = chicken.Map.CreateObject('chicken_egg', chicken.X, chicken.Y)
egg.Name = 'Chicken Combat egg'
egg.NamePl = 'Chicken Combat eggs'
egg.Name = 'Combat Chicken egg'
egg.NamePl = 'Combat Chicken eggs'
egg.Quantity = 1
chicken.Map.Print('The %s lays an egg!'%chicken.Name)
got = 0