Skip to content
Snippets Groups Projects
Commit 7c17df32 authored by Harry Wyatt's avatar Harry Wyatt
Browse files

Fixed variable name error

parent 76ece374
No related branches found
No related tags found
No related merge requests found
......@@ -309,7 +309,7 @@ def add_chest_reward(raffle, chest):
if obj is not None:
to_add = copy.deepcopy(obj)
chest.contains = to_add
def evaluate_spawn(obj, room, probability):
......@@ -344,7 +344,7 @@ def populate_rooms():
possible_rewards = []
# Add the nothing
possible_reward += [None] * CHANCE_NOTHING
possible_rewards += [None] * CHANCE_NOTHING
for category in spawnable_items:
for item in spawnable_items[category]:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment