From 76f6ecb7c809c6e93447efb91bdf50f2a9d50d6b Mon Sep 17 00:00:00 2001 From: fusion32 Date: Fri, 6 Jun 2025 19:36:18 -0300 Subject: some work on `crmain.cc` and `cract.cc` + merge creature headers --- src/crcombat.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/crcombat.cc') diff --git a/src/crcombat.cc b/src/crcombat.cc index 9edfe9b..dd732e3 100644 --- a/src/crcombat.cc +++ b/src/crcombat.cc @@ -307,11 +307,11 @@ int TCombat::GetArmorStrength(void){ int TCombat::GetDistance(void){ int Distance = 0; if(this->Close != NONE || this->Fist){ - Distance = 1; + Distance = 1; // DISTANCE_CLOSE ? }else if(this->Throw != NONE){ - Distance = 2; + Distance = 2; // DISTANCE_THROW ? }else if(this->Missile != NONE || this->Wand != NONE){ - Distance = 3; + Distance = 3; // DISTANCE_RANGE ? } return Distance; } -- cgit v1.2.3