Fix division error in /python/items/banquet.py

git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@11447 282e977c-c81d-0410-88c4-b93c2d0d6712
master
anmaster 2009-02-11 21:02:23 +00:00
parent 38379114b7
commit f117ef543f
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ def do_banquet():
# Teleport
act.Message('You feel grabbed by some powerful force.')
act.Teleport(m, int(( size_x - 1 ) / 2), int( size_y - 1 ) / 2)
act.Teleport(m, int(( size_x - 1 ) / 2), int((size_y - 1) / 2))
# Keep free spot by putting a statue
statue = im.CreateObject(rw, x, y)