From 709b4524e6e54ed0d9717937506c69891cd9fa55 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Tue, 11 Jul 2017 19:26:02 -0400 Subject: [PATCH 1/3] Bump version :D --- config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.py b/config.py index 757afcb28..c68159c53 100644 --- a/config.py +++ b/config.py @@ -19,10 +19,10 @@ debug = False saveInRoot = False # Version data -version = "1.29.5" -tag = "git" -expansionName = "Singularity" -expansionVersion = "1158190" +version = "1.30.0" +tag = "Stable" +expansionName = "YC119.7" +expansionVersion = "1.0" evemonMinVersion = "4081" pyfaPath = None From f59a65f31466c3eeb905d7be31ab847de756b646 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Sat, 15 Jul 2017 21:49:58 -0400 Subject: [PATCH 2/3] bump dev --- config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.py b/config.py index c68159c53..9ffbf809b 100644 --- a/config.py +++ b/config.py @@ -19,8 +19,8 @@ debug = False saveInRoot = False # Version data -version = "1.30.0" -tag = "Stable" +version = "1.30.1" +tag = "git" expansionName = "YC119.7" expansionVersion = "1.0" evemonMinVersion = "4081" From 66752b2cbfb02b79f1928f677d98a21585e499b5 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Sat, 15 Jul 2017 21:51:13 -0400 Subject: [PATCH 3/3] Fix cargo bonus for Covert subsytems (#1246) --- eos/effects/capacityaddpassive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eos/effects/capacityaddpassive.py b/eos/effects/capacityaddpassive.py index 2a858cc14..8d7ee24bd 100644 --- a/eos/effects/capacityaddpassive.py +++ b/eos/effects/capacityaddpassive.py @@ -7,4 +7,4 @@ type = "passive" def handler(fit, subsystem, context): - fit.ship.increaseItemAttr("capacity", subsystem.getModifiedItemAttr("capacity") or 0) + fit.ship.increaseItemAttr("capacity", subsystem.getModifiedItemAttr("cargoCapacityAdd") or 0)