From d7aa896151fca2c5ae5f5b1754a64604e9598d19 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 2 Apr 2010 23:51:20 +0100 Subject: [PATCH] Added Caldari to the races --- eve_api/app_defines.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eve_api/app_defines.py b/eve_api/app_defines.py index 75cbf66..b6d496b 100644 --- a/eve_api/app_defines.py +++ b/eve_api/app_defines.py @@ -32,6 +32,7 @@ API_RACES_CHOICES = ( (10, 'Amarr'), (11, 'Khanid'), (12, 'Ni-Kunni'), + (13, 'Caldari'), ) API_RACES = { @@ -47,4 +48,5 @@ API_RACES = { 'Amarr': 10, 'Khanid': 11, 'Ni-Kunni': 12, + 'Caldari': 13, }