Kitteh6660 / Corruption-of-Champions-Mod

CoC source from fenoxo, modded by Kitteh6660
232 stars 96 forks source link

Deprecate SimpleConsumable #1287

Closed Stadler76 closed 6 years ago

Stadler76 commented 6 years ago

fixes #1039

Had to change

if (player.hips.rating < 10) player.hips.rating = 10;

to

if (player.hips.rating < 12) player.hips.rating = 12;

because there was some side effect, that raised the hipRating from 10 to 12 after some time passed.