Skip to content

Commit

Permalink
Merge pull request #7 from evennia/master
Browse files Browse the repository at this point in the history
Some minor changes before merging
  • Loading branch information
delizin committed Feb 2, 2014
2 parents 45ebc2c + 985055d commit ff20072
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contrib/dice.py
Expand Up @@ -150,7 +150,7 @@ def func(self):

# Limit the number of dice and sides a character can roll to prevent server slow down and crashes
ndicelimit = 10000 # Maximum number of dice
nsidelimit = 100000000000 # Maximum number of sides
nsidelimit = 10000 # Maximum number of sides
if int(parts[0]) > ndicelimit or int(parts[2]) > nsidelimit:
self.caller.msg("The maximum roll allowed is %sd%s." % (ndicelimit, nsidelimit))
return
Expand Down
2 changes: 1 addition & 1 deletion contrib/menu_login.py
Expand Up @@ -362,4 +362,4 @@ def func(self):
menu = MenuTree(self.caller, nodes=(START, node1a, node1b,
node2a, node2b, node3),
exec_end=None)
menu.start()
menu.start()
2 changes: 1 addition & 1 deletion src/utils/evform_test.py
Expand Up @@ -7,7 +7,7 @@
TABLECHAR = "c"

FORM = """
{c.------------------------------------------------.
.------------------------------------------------.
| |
| Name: xxxxx1xxxxx Player: xxxxxxx2xxxxxxx |
| xxxxxxxxxxx |
Expand Down

0 comments on commit ff20072

Please sign in to comment.