Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nonperforming committed Nov 15, 2022
1 parent 92c2353 commit dff8684
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/Client/FallingBlock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ namespace spades {
void FallingBlock::Render3D() {
ModelRenderParam param;
param.matrix = matrix;
if (plus::HideBlocks || p_fallingBlocks)
if (plus::fallingBlocks || p_fallingBlocks)
{
client->GetRenderer().RenderModel(*model, param);
}
Expand Down
4 changes: 2 additions & 2 deletions Sources/Plus/ServerLimits.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ namespace spades
{
float minFov = -360;
float maxFov = 360;
int fallingBlocks = 1;
int fallingBlocks = 0;

void resetLimits()
{
SPLog("Raising server restrictions");
minFov = -360;
maxFov = 360;
fallingBlocks = 1;
fallingBlocks = 0;
}
}
}

0 comments on commit dff8684

Please sign in to comment.