|
|
|
|
@ -1727,7 +1727,7 @@ void InitKeymapActions()
|
|
|
|
|
N_("Use health potion"), |
|
|
|
|
N_("Use health potions from belt."), |
|
|
|
|
SDLK_UNKNOWN, |
|
|
|
|
[] { UseBeltItem(BLT_HEALING); }, |
|
|
|
|
[] { UseBeltItem(BeltItemType::Healing); }, |
|
|
|
|
nullptr, |
|
|
|
|
CanPlayerTakeAction); |
|
|
|
|
sgOptions.Keymapper.AddAction( |
|
|
|
|
@ -1735,7 +1735,7 @@ void InitKeymapActions()
|
|
|
|
|
N_("Use mana potion"), |
|
|
|
|
N_("Use mana potions from belt."), |
|
|
|
|
SDLK_UNKNOWN, |
|
|
|
|
[] { UseBeltItem(BLT_MANA); }, |
|
|
|
|
[] { UseBeltItem(BeltItemType::Mana); }, |
|
|
|
|
nullptr, |
|
|
|
|
CanPlayerTakeAction); |
|
|
|
|
sgOptions.Keymapper.AddAction( |
|
|
|
|
@ -2131,7 +2131,7 @@ void InitPadmapActions()
|
|
|
|
|
N_("Use health potion"), |
|
|
|
|
N_("Use health potions from belt."), |
|
|
|
|
ControllerButton_BUTTON_LEFTSHOULDER, |
|
|
|
|
[] { UseBeltItem(BLT_HEALING); }, |
|
|
|
|
[] { UseBeltItem(BeltItemType::Healing); }, |
|
|
|
|
nullptr, |
|
|
|
|
CanPlayerTakeAction); |
|
|
|
|
sgOptions.Padmapper.AddAction( |
|
|
|
|
@ -2139,7 +2139,7 @@ void InitPadmapActions()
|
|
|
|
|
N_("Use mana potion"), |
|
|
|
|
N_("Use mana potions from belt."), |
|
|
|
|
ControllerButton_BUTTON_RIGHTSHOULDER, |
|
|
|
|
[] { UseBeltItem(BLT_MANA); }, |
|
|
|
|
[] { UseBeltItem(BeltItemType::Mana); }, |
|
|
|
|
nullptr, |
|
|
|
|
CanPlayerTakeAction); |
|
|
|
|
sgOptions.Padmapper.AddAction( |
|
|
|
|
|