Sid Meier's Civilization VI

Sid Meier's Civilization VI

Quick Deals
nwilmes 19 Dec, 2022 @ 10:41am
Hold Ctrl Key to Add More not working on Mac
Great mod, but this one feature has never worked for me. I've tried all the Mac modifier keys, but no matter what I do, I seem to only be able to add 1 resource at a time by clicking on it.

Anyone able to click to add a bunch of resources at once on MacOS systems?
< >
Showing 1-3 of 3 comments
gdb.eth 22 Apr, 2023 @ 5:36am 
Same for me, very annoying ;(
Last edited by gdb.eth; 22 Apr, 2023 @ 5:37am
MeniliteZ 23 Jan, 2024 @ 12:33pm 
Click to add the first 1, then click the 1 you added to type in an amount. That's what I do on Mac.
For anyone looking for a solution on Mac, you can alter the mod to accept Option and Shift keys.

  • While the game is not running, open up a terminal window (e.g. iTerm2 or Terminal)
  • Go to the mod's UI directory by running Command 1 below.
  • Then open this Lua file with Command 2 below
  • Near the bottom of the file, replace the original line with the two new lines (again see below)
  • Save. You should now be able to use the Shift or Option key to add 10 at a time.

Command 1:

cd "/Users/$USER/Library/Application Support/Steam/steamapps/workshop/content/289070/2460661464/ui/"

Command 2:

open -a TextEdit qd_popuptab_sale.lua

Original Line:

if pInputStruct:GetKey() == Keys.VK_CONTROL then

New Lines:

local currentKey = pInputStruct:GetKey() if currentKey == Keys.VK_CONTROL or currentKey == Keys.VK_ALT or currentKey == Keys.VK_SHIFT then
Last edited by ThePlayerOfGames; 7 Mar @ 11:56pm
< >
Showing 1-3 of 3 comments
Per page: 1530 50