mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'ta-comms' into 'master'
Remap TA retry from Z (dialogue) back to Y (bail) See merge request kart-krew-dev/ring-racers-internal!2815
This commit is contained in:
commit
b46ae2ffca
4 changed files with 5 additions and 5 deletions
|
|
@ -295,7 +295,7 @@ void Dialogue::Tick(void)
|
|||
slide += kSlideSpeed;
|
||||
}
|
||||
|
||||
if (P_LevelIsFrozen())
|
||||
if (P_LevelIsFrozen() || (gametyperules & GTR_BOSS))
|
||||
{
|
||||
if (fade > 0)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7985,7 +7985,7 @@ void K_drawKartHUD(void)
|
|||
if (ta)
|
||||
{
|
||||
using srb2::Draw;
|
||||
Draw::TextElement text = Draw::TextElement().parse("<z> Restart");
|
||||
Draw::TextElement text = Draw::TextElement().parse("<y> Restart");
|
||||
Draw(BASEVIDWIDTH - 19, 2)
|
||||
.flags(flags | V_ORANGEMAP)
|
||||
.align(Draw::Align::kRight)
|
||||
|
|
|
|||
|
|
@ -468,8 +468,8 @@ boolean M_Responder(event_t *ev)
|
|||
// Special mid-game input behaviours
|
||||
if (Playing() && !demo.playback)
|
||||
{
|
||||
// Quick Retry (Z in modeattacking)
|
||||
if (modeattacking && G_PlayerInputDown(0, gc_vote, splitscreen + 1) == true)
|
||||
// Quick Retry (Y in modeattacking)
|
||||
if (modeattacking && G_PlayerInputDown(0, gc_bail, splitscreen + 1) == true)
|
||||
{
|
||||
if (!blockreset)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -8742,7 +8742,7 @@ boolean P_LoadLevel(boolean fromnetsave, boolean reloadinggamestate)
|
|||
if (G_IsModeAttackRetrying() && !demo.playback)
|
||||
{
|
||||
nowtime = lastwipetic;
|
||||
while (G_PlayerInputDown(0, gc_vote, splitscreen + 1) == true)
|
||||
while (G_PlayerInputDown(0, gc_bail, splitscreen + 1) == true)
|
||||
{
|
||||
while (!((nowtime = I_GetTime()) - lastwipetic))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue