Skip to content

Commit

Permalink
disable interior CRC check until we can fix it properly
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomityGuy committed Mar 14, 2024
1 parent 9ea9332 commit e3a0f57
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions engine/source/interior/interiorInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -389,11 +389,11 @@ bool InteriorInstance::onAdd()

if (isClientObject() || gSPMode)
{
if (mCRC != mInteriorRes.getCRC())
{
NetConnection::setLastError("Local interior file '%s' does not match version on server.", mInteriorFileName);
return false;
}
//if (mCRC != mInteriorRes.getCRC())
//{
// NetConnection::setLastError("Local interior file '%s' does not match version on server.", mInteriorFileName);
// return false;
//}
for (i = 0; i < mInteriorRes->getNumDetailLevels(); i++) {
// ok, if the material list load failed...
// if this is a local connection, we'll assume that's ok
Expand Down

0 comments on commit e3a0f57

Please sign in to comment.