mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: #878 Fix typos in comments/code
This commit is contained in:
parent
34827ed8c7
commit
a1a6c669f2
2 changed files with 2 additions and 3 deletions
|
@ -25,7 +25,7 @@ SET(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules;${CMAKE_MODULE_P
|
||||||
# Set CMake 2.6 Policies.
|
# Set CMake 2.6 Policies.
|
||||||
IF(COMMAND cmake_policy)
|
IF(COMMAND cmake_policy)
|
||||||
# Works around warnings libraries linked against that don't
|
# Works around warnings libraries linked against that don't
|
||||||
# have absolute paths (e.g. -lpthreads)
|
# have absolute paths (e.g. -lpthread)
|
||||||
cmake_policy(SET CMP0003 NEW)
|
cmake_policy(SET CMP0003 NEW)
|
||||||
|
|
||||||
# Works around warnings about escaped quotes in ADD_DEFINITIONS
|
# Works around warnings about escaped quotes in ADD_DEFINITIONS
|
||||||
|
|
|
@ -5704,7 +5704,6 @@ bool CCharacter::onAnimalHungry( uint petIndex, bool justBecameHungry )
|
||||||
// Consume to full satiety (last useful unit is entirely consumed)
|
// Consume to full satiety (last useful unit is entirely consumed)
|
||||||
animal.Satiety = animal.MaxSatiety;
|
animal.Satiety = animal.MaxSatiety;
|
||||||
nbUnits = (sint)ceil(caloriesNeeded / caloriesPerUnit);
|
nbUnits = (sint)ceil(caloriesNeeded / caloriesPerUnit);
|
||||||
|
|
||||||
}
|
}
|
||||||
nbItemsLeftToConsume -= nbUnits;
|
nbItemsLeftToConsume -= nbUnits;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue