forked from Cryz/battle_royale_sim
add items also on the telegram bot
This commit is contained in:
@@ -25,9 +25,9 @@ class BrSimArena():
|
||||
|
||||
def init_items(self, items):
|
||||
if not items: return
|
||||
for item in items:
|
||||
for itype, quantity in item.items():
|
||||
for i in range(quantity): self.items.append(_items.BrSimItem(wrype))
|
||||
for item_id in items:
|
||||
I= _items.BrSimItem(item_id)
|
||||
self.items.append(I)
|
||||
|
||||
def next_day(self):
|
||||
self.day+= 1
|
||||
|
||||
Reference in New Issue
Block a user