[Gem 1.13.4 & Civup 2.5.2] Monument to the Gods 15% or 25%?

AlpsStranger

Jump jump on the tiger!
Joined
Feb 8, 2009
Messages
5,820
Monument to the Gods promises a 25% boost to ancient/classical wonders, but it only gives 15% when actually taken. Either the tooltip or the actual ability is bugged.
 
I hadn't actually noticed the discrepancy, but, yeah, I think it does promise that. As far as I know it has not been changed for GEM - it's not listed as a change here - and this is the official G&K script:

-<Row> <Type>BELIEF_MONUMENT_GODS</Type> <Description>TXT_KEY_BELIEF_MONUMENT_GODS</Description> <ShortDescription>TXT_KEY_BELIEF_MONUMENT_GODS_SHORT</ShortDescription> <Pantheon>true</Pantheon> <ObsoleteEra>ERA_MEDIEVAL</ObsoleteEra> <WonderProductionModifier>15</WonderProductionModifier> </Row>

So, it is giving 15% regardless of what the text says. An easy fix one way or the other I'd wager.
 
Something must be wrong with your Civ5 man. In my base game it says 15% and delivers 15%. They've introduced the bug somehow through either GEM or Civ5UP.

By itself this doesn't matter. It's a minor tooltip bug. What may matter is that they're shuffling around XML or SQL that has stuff in it they've overlooked. I'm grateful for all of their hard work and just want to make sure they're aware of polish issues like this.
 
Yes, it is here I believe:

Code:
INSERT INTO Civup_Language_EN_US (DateModified, Tag, Text, Gender, Plurality) VALUES (date('2013-01-21'), 'TXT_KEY_BELIEF_MONUMENT_GODS', '+25% [ICON_PRODUCTION] Production of Ancient/Classical Wonders', '', '');

(In 'Text>en_US>Faith.sql'). So, whichever one we're supposed to have, the other can be changed easily I would think.
 
I alerted Thal and pointed him to this thread. I imagine it'll be fixed next version :)

EDIT: For the record, I think the actual value should be changed to 25% or even slightly higher. Giving up your entire pantheon belief just to build early wonders should be potent stuff, no?

EDIT2: If I want to change it to function as 25% for my own client, what command should I use?

I'm poking around in GEF_Data.xml and that seems to be where I should add it. I imagine it's "BELIEF_MONUMENT_GODS" but what do I have it set?
 
Nevermind, got it.

Added this to GEF_Data.xml.

Code:
		<Update>
			<Where Type="BELIEF_MONUMENT_GODS" />
			<Set WonderProductionModifier="25"/>
		</Update>

That should to it, right?
 
Back
Top Bottom