TTCodeRedemptionMgrAI: added temp expiration date, renamed back to weed

This commit is contained in:
Wilee999 2015-03-06 18:49:31 -08:00
parent 98a79288fc
commit a7e57a8694

View file

@ -31,11 +31,11 @@ Expiration date, month and day are optional fields.
class TTCodeRedemptionMgrAI(DistributedObjectAI): class TTCodeRedemptionMgrAI(DistributedObjectAI):
notify = DirectNotifyGlobal.directNotify.newCategory("TTCodeRedemptionMgrAI") notify = DirectNotifyGlobal.directNotify.newCategory("TTCodeRedemptionMgrAI")
codes = { codes = {
'test': { 'weed': {
'items': [ 'items': [
CatalogClothingItem.CatalogClothingItem(1821, 0) CatalogClothingItem.CatalogClothingItem(1821, 0)
] ]
'expirationDate': datetime(2015, 3, 30) 'expirationDate': datetime(2016, 3, 30) # temporary expiration until release
} }
} }