mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-22 22:33:43 -07:00
one last name final final
This commit is contained in:
parent
5949df614f
commit
78e45b7ac9
1 changed files with 4 additions and 4 deletions
|
@ -65,8 +65,8 @@ void CrawlSpeed_Register() {
|
||||||
bool excludeWellBackroom = (player->actor.world.pos.x > 950.0f) && (player->actor.world.pos.x < 1025.0f) &&
|
bool excludeWellBackroom = (player->actor.world.pos.x > 950.0f) && (player->actor.world.pos.x < 1025.0f) &&
|
||||||
(player->actor.world.pos.z > -1510.0f) && (player->actor.world.pos.z < -1490.0f) &&
|
(player->actor.world.pos.z > -1510.0f) && (player->actor.world.pos.z < -1490.0f) &&
|
||||||
gPlayState->sceneNum == SCENE_BOTTOM_OF_THE_WELL;
|
gPlayState->sceneNum == SCENE_BOTTOM_OF_THE_WELL;
|
||||||
bool glitchAiding = CVAR_GLITCH_AIDING_VALUE;
|
bool excludeGlitchAiding = CVAR_GLITCH_AIDING_VALUE;
|
||||||
if (glitchAiding && excludeWellBackroom) {
|
if (excludeGlitchAiding && excludeWellBackroom) {
|
||||||
*should = true;
|
*should = true;
|
||||||
} else {
|
} else {
|
||||||
ExitCrawlspace(player, gPlayState);
|
ExitCrawlspace(player, gPlayState);
|
||||||
|
@ -85,8 +85,8 @@ void CrawlSpeed_Register() {
|
||||||
bool excludeWellBackroom = (player->actor.world.pos.x > 950.0f) && (player->actor.world.pos.x < 1025.0f) &&
|
bool excludeWellBackroom = (player->actor.world.pos.x > 950.0f) && (player->actor.world.pos.x < 1025.0f) &&
|
||||||
(player->actor.world.pos.z > -1510.0f) && (player->actor.world.pos.z < -1490.0f) &&
|
(player->actor.world.pos.z > -1510.0f) && (player->actor.world.pos.z < -1490.0f) &&
|
||||||
gPlayState->sceneNum == SCENE_BOTTOM_OF_THE_WELL;
|
gPlayState->sceneNum == SCENE_BOTTOM_OF_THE_WELL;
|
||||||
bool glitchAiding = CVAR_GLITCH_AIDING_VALUE;
|
bool excludeGlitchAiding = CVAR_GLITCH_AIDING_VALUE;
|
||||||
if (glitchAiding && excludeWellBackroom) {
|
if (excludeGlitchAiding && excludeWellBackroom) {
|
||||||
*should = true;
|
*should = true;
|
||||||
} else {
|
} else {
|
||||||
ExitCrawlspaceCS(gPlayState, csCam, actionParameters, initTimer, atPoints, eyePoints);
|
ExitCrawlspaceCS(gPlayState, csCam, actionParameters, initTimer, atPoints, eyePoints);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue