1
0

Fixed compiler warnings in IsBiomeNoDownfall().

This commit is contained in:
madmaxoft 2013-11-30 19:13:04 +01:00
parent 2bbe5046e9
commit 9a36564ce9

View File

@ -568,8 +568,11 @@ inline bool IsBiomeNoDownfall(EMCSBiome a_Biome)
{ {
return true; return true;
} }
default:
{
return false;
}
} }
return false;
} }
// tolua_end // tolua_end