Skip to content

Commit

Permalink
Fixed code snippets for global stats history
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco Dias committed Mar 4, 2024
1 parent 4236127 commit 6d9bbf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/achievements.js
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@
* @example
* ```gml
* var _name = "Eggs_Hatched";
* var _arr_history = steam_get_global_stat_history("Eggs_Hatched");
* var _arr_history = steam_get_global_stat_history_int("Eggs_Hatched");
* show_debug_message("Evolution:");
* array_foreach(_arr_history, function(_element, _index) { show_debug_message($"Day {_index}: {_element}"); });
* ```
Expand All @@ -427,7 +427,7 @@
* @example
* ```gml
* var _name = "Eggs_Hatched";
* var _arr_history = steam_get_global_stat_history("Eggs_Hatched");
* var _arr_history = steam_get_global_stat_history_real("Eggs_Hatched");
* show_debug_message("Evolution:");
* array_foreach(_arr_history, function(_element, _index) { show_debug_message($"Day {_index}: {_element}"); });
* ```
Expand Down

0 comments on commit 6d9bbf6

Please sign in to comment.