mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
15 lines
497 B
Python
Executable file
15 lines
497 B
Python
Executable file
import CatalogItem
|
|
from toontown.toonbase import TTLocalizer
|
|
from direct.showbase import PythonUtil
|
|
from toontown.toonbase import ToontownGlobals
|
|
|
|
class CatalogInvalidItem(CatalogItem.CatalogItem):
|
|
|
|
def requestPurchase(self, phone, callback):
|
|
self.notify.error('Attempt to purchase invalid item.')
|
|
|
|
def acceptItem(self, mailbox, index, callback):
|
|
self.notify.error('Attempt to accept invalid item.')
|
|
|
|
def output(self, store = -1):
|
|
return 'CatalogInvalidItem()'
|