summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2016-01-28 00:45:38 -0500
committerMichael Sterrett <mr_bones_@gentoo.org>2016-01-28 00:50:04 -0500
commit6522475f9fd95622eaafe9f24a8f4273a0d2dd1e (patch)
tree5fb0d9fdf5f8da46f801fed1b1d7ca4eb2b627e9 /games-simulation/qct/files
parentdev-libs/zziplib: add REQUIRED_USE (bug #572940) (diff)
downloadgentoo-6522475f9fd95622eaafe9f24a8f4273a0d2dd1e.tar.gz
gentoo-6522475f9fd95622eaafe9f24a8f4273a0d2dd1e.tar.bz2
gentoo-6522475f9fd95622eaafe9f24a8f4273a0d2dd1e.zip
games-simulation/qct: games-simulation/qct is gone
Diffstat (limited to 'games-simulation/qct/files')
-rw-r--r--games-simulation/qct/files/qct-0.7-constant.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/games-simulation/qct/files/qct-0.7-constant.patch b/games-simulation/qct/files/qct-0.7-constant.patch
deleted file mode 100644
index 43a01ea1a4a9..000000000000
--- a/games-simulation/qct/files/qct-0.7-constant.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Fix traceback from using wrong name.
-
-Patch by Peter `MathFox' Roozemaal.
-
-http://bugs.gentoo.org/97762
-http://sourceforge.net/tracker/index.php?func=detail&aid=801329&group_id=74836&atid=542163
-
---- qct/specializations.py
-+++ qct/specializations.py
-@@ -131,9 +131,9 @@
- mods = self.getModsFor('incomeMod', employer)
- if resident:
- if resident.job == trainer:
-- return prospect.level * INCOMEMULT * mods
-+ return prospect.level * constants.INCOMEMULT * mods
- else:
-- return prospect.level * INCOMEMULT / 2 * mods
-+ return prospect.level * constants.INCOMEMULT / 2 * mods
- else:
- return 0
-