mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-05-04 08:14:08 +00:00
separate modecodes for product and rotspace
This commit is contained in:
parent
1359dfcd62
commit
bd7d08f9db
@ -1061,8 +1061,8 @@ int modecodetable[42][6] = {
|
|||||||
// unused codes: 6 (cheat/tampered), 25, 254, 255
|
// unused codes: 6 (cheat/tampered), 25, 254, 255
|
||||||
|
|
||||||
modecode_t modecode() {
|
modecode_t modecode() {
|
||||||
// bit 61: product
|
// bit 61: product; 62: rotspace
|
||||||
if(hybri) return PIU(modecode()) | (1ll << 61);
|
if(hybri) return PIU(modecode()) | (1ll << (prod ? 61 : 62));
|
||||||
#if CAP_SAVE
|
#if CAP_SAVE
|
||||||
if(anticheat::tampered || cheater || geometry >= gGUARD) return 6;
|
if(anticheat::tampered || cheater || geometry >= gGUARD) return 6;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user