Browse Source

Fixed the stray, time travelling duplicate label.

netuttki 1 year ago
parent
commit
c88f3a0157
1 changed files with 2 additions and 2 deletions
  1. 2 2
      locations/homes_properties.qsrc

+ 2 - 2
locations/homes_properties.qsrc

@@ -587,7 +587,7 @@ if $ARGS[0] = 'get_properties_for_rent':
 	count = ARRSIZE('home_name')
 
 	if count > 0: 
-		:get_rented_properties_loop
+		:get_properties_for_rent_loop
 			$getpropforrentcode = $home_name[i]
 			if $getpropforrentcode ! '' and checked_homes[$getpropforrentcode] = 0 and accessible_property[$getpropforrentcode] = 0:
 				checked_homes[$getpropforrentcode] = 1
@@ -610,7 +610,7 @@ if $ARGS[0] = 'get_properties_for_rent':
 				killvar 'property'
 			end
 			i += 1
-		if i < count: jump 'get_rented_properties_loop'
+		if i < count: jump 'get_properties_for_rent_loop'
 	end
 	killvar 'checked_homes'
 	killvar 'count' & killvar 'i' & killvar 'j' & killvar '$getpropforrentcode' & killvar 'ishome' & killvar 'isrental'