Browse Source

[fixed] homes properties array not updated correctly in saveupdater. Reported by Netty

anjuna krokus 3 weeks ago
parent
commit
5aab38946f
2 changed files with 7 additions and 2 deletions
  1. 1 1
      locations/gad_beach.qsrc
  2. 6 1
      locations/saveupdater.qsrc

+ 1 - 1
locations/gad_beach.qsrc

@@ -43,7 +43,7 @@ if $ARGS[0] = 'start':
 			'<a href="exec:gt ''gad_beach'', ''Mira'', 1 ">Mira</a> is laying on the beach sunbathing.'
 			if npc_rel['A60'] < 15: npc_rel['A60'] += 1
 		else
-			'<a href="exec:& gt ''gad_beach'', ''Mira'', 0 ">Mira</a> is in the river splashing water around and having fun.'
+			'<a href="exec:gt ''gad_beach'', ''Mira'', 0 ">Mira</a> is in the river splashing water around and having fun.'
 			if npc_rel['A60'] < 15: npc_rel['A60'] += 1
 		end
 	end

+ 6 - 1
locations/saveupdater.qsrc

@@ -3150,10 +3150,15 @@ if temp_current_save_version < 00090204:
 	gs 'shortgs', 'remove_array_element', '$home_name', 'gaddvor'
 end
 
+
 !!------------------------------------!!Version 0.9.2.5!!-----------------------------------------------!!
 
 if temp_current_save_version < 00090205:
-!! put stuff here
+	$home_name['gad_swamphouse'] = 'hunters_lodge'
+	$home_name['gad_swamp_yard'] = 'hunters_lodge'
+
+	gs 'shortgs', 'remove_array_element', '$home_name', 'swamphouse'
+	gs 'shortgs', 'remove_array_element', '$home_name', 'swamp_yard'
 end