mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
Grammar fixes, settings.json beautify, crash fixes, GC fixes (still breaks though with #f), and gag selection fix
This commit is contained in:
parent
3093813f06
commit
68b8b047a5
5 changed files with 19 additions and 16 deletions
|
@ -376,7 +376,7 @@ SuitFaceoffTaunts = {'b': ['Do you have a donation for me?',
|
|||
'Good, it takes two to mingle.',
|
||||
"Let's mingle.",
|
||||
'This looks like a good place to mingle.',
|
||||
"Well,isn't this cozy?",
|
||||
"Well, isn't this cozy?",
|
||||
"You're mingling with defeat.",
|
||||
"I'm going to mingle in your business.",
|
||||
"Are you sure you're ready to mingle?"],
|
||||
|
@ -520,7 +520,7 @@ SuitFaceoffTaunts = {'b': ['Do you have a donation for me?',
|
|||
'Care to take a few turns with me?',
|
||||
'I have my own special spin on the subject.'],
|
||||
'f': ["I'm gonna tell the boss about you!",
|
||||
"I may be just a flunky - But I'm real spunky.",
|
||||
"I may be just a Flunky - But I'm real spunky.",
|
||||
"I'm using you to step up the corporate ladder.",
|
||||
"You're not going to like the way I work.",
|
||||
'The boss is counting on me to stop you.',
|
||||
|
@ -644,7 +644,7 @@ SuitFaceoffTaunts = {'b': ['Do you have a donation for me?',
|
|||
"I've been asked to pinch-hit.",
|
||||
"I'll prove you're not dreaming.",
|
||||
'Heads you lose, tails I win.',
|
||||
'A Penny for your gags.'],
|
||||
'A penny for your gags.'],
|
||||
'tw': ['Things are about to get very tight.',
|
||||
"That's Mr. Tightwad to you.",
|
||||
"I'm going to cut off your funding.",
|
||||
|
|
|
@ -17,7 +17,7 @@ class Settings(collections.MutableMapping):
|
|||
|
||||
def write(self):
|
||||
with open(self.filename, 'w') as f:
|
||||
json.dump(self.store, f)
|
||||
json.dump(self.store, f, sort_keys=True, indent=2, separators=(',', ': '))
|
||||
|
||||
def __setitem__(self, key, value):
|
||||
self.store[key] = value
|
||||
|
|
|
@ -11564,8 +11564,7 @@ NPCToonDict = {20000: (-1,
|
|||
0,
|
||||
10,
|
||||
5,
|
||||
27,
|
||||
0),
|
||||
27),
|
||||
'm',
|
||||
0,
|
||||
NPC_REGULAR),
|
||||
|
@ -11583,8 +11582,7 @@ NPCToonDict = {20000: (-1,
|
|||
0,
|
||||
0,
|
||||
0,
|
||||
15,
|
||||
0),
|
||||
15),
|
||||
'm',
|
||||
0,
|
||||
NPC_REGULAR),
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
#!/usr/bin/env python2
|
||||
import gc
|
||||
|
||||
gc.disable()
|
||||
|
||||
import __builtin__
|
||||
|
||||
__builtin__.process = 'client'
|
||||
|
@ -193,11 +197,15 @@ del version
|
|||
base.loader = base.loader
|
||||
__builtin__.loader = base.loader
|
||||
autoRun = ConfigVariableBool('toontown-auto-run', 1)
|
||||
|
||||
gc.enable()
|
||||
gc.collect()
|
||||
|
||||
if autoRun:
|
||||
try:
|
||||
base.run()
|
||||
except SystemExit:
|
||||
raise
|
||||
pass
|
||||
except:
|
||||
print describeException()
|
||||
raise
|
||||
import traceback
|
||||
traceback.print_exc()
|
|
@ -359,9 +359,6 @@ class TownBattle(StateData.StateData):
|
|||
def enterAttack(self):
|
||||
self.attackPanel.enter()
|
||||
self.accept(self.attackPanelDoneEvent, self.__handleAttackPanelDone)
|
||||
for toonPanel in self.toonPanels:
|
||||
toonPanel.setValues(0, BattleBase.NO_ATTACK)
|
||||
|
||||
return None
|
||||
|
||||
def exitAttack(self):
|
||||
|
|
Loading…
Reference in a new issue