250501 커밋
This commit is contained in:
@@ -91,6 +91,21 @@ namespace GameServer
|
||||
return false;
|
||||
}
|
||||
|
||||
public DateTime? getRentalMyhomeFinishTime(string myhomeGuid)
|
||||
{
|
||||
foreach (var rental in m_rentals.Values)
|
||||
{
|
||||
var rental_attribute = rental.getEntityAttribute<RentalAttribute>();
|
||||
if (rental_attribute == null)
|
||||
continue;
|
||||
|
||||
if (rental_attribute.MyhomeGuid == myhomeGuid)
|
||||
return rental_attribute.RentalFinishTime;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public (int, int, int) getAddrressFromMyhome(string myhomeGuid)
|
||||
{
|
||||
var land_meta_id = 0;
|
||||
|
||||
Reference in New Issue
Block a user