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-b93c2d0d6712master
parent
38379114b7
commit
f117ef543f
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue