- Aug 19, 2015
- Aug 18, 2015
-
-
kwolekr authored
-
- Aug 16, 2015
- Aug 15, 2015
- Aug 13, 2015
-
-
kwolekr authored
-
est31 authored
-
Perttu Ahola authored
-
est31 authored
-
kwolekr authored
-
- Aug 12, 2015
-
-
est31 authored
Before, this lua code led to a crash: local pcg = PcgRandom(42) local value = pcg:next() This was because if you called s32 PcgRandom::range(min, max) with the minimum and maximum possible values for s32 integers (which the lua binding code did), u32 PcgRandom::range(bound) got called with 0 as the bound. The bound however is one above the maximum value, so 0 is a "special" value to pass to this function. This commit fixes the lua crash by assigning the RNG's full range to the bound 0, which is also fits to the "maximum is bound - 1" principle, as (u32)-1 is the maximum value in the u32 range.
-
- Aug 10, 2015
- Aug 09, 2015
-
-
rubenwardy authored
-
Loïc Blot authored
-
- Aug 07, 2015
-
-
Kahrl authored
-
- Aug 06, 2015
- Aug 05, 2015
-
-
RealBadAngel authored
-
- Aug 03, 2015
- Aug 02, 2015
-
-
Břetislav Štec authored
-
Miner59 authored
Before players "bounced" too high. Now, while still allowing to bounce, higher speed bounces are throttled.
-
Břetislav Štec authored
-
rubenwardy authored
-
Břetislav Štec authored
src/server.cpp src/emerge.cpp
-
Břetislav Štec authored
-
Břetislav Štec authored
-
kwolekr authored
Multiplying by a factor of 1/1000.f (rather than dividing by 1000.f) directly introduces an error of 1 ULP. With this patch, an exact comparison of a floating point literal with the deserialized F1000 form representing it is now guaranteed to be successful. In addition, the maxmium and minimum safely representible floating point numbers are now well-defined as constants.
-