mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-31 02:14:09 +03:00
Rename number to number_words
This is to clarify that it returns the word forms of numbers, not numbers themselves.
This commit is contained in:
@@ -1710,14 +1710,14 @@ void scriptclass::run(void)
|
||||
#if !defined(NO_CUSTOM_LEVELS)
|
||||
if (map.custommode)
|
||||
{
|
||||
usethisnum = help.number(cl.numtrinkets());
|
||||
usethisnum = help.number_words(cl.numtrinkets());
|
||||
}
|
||||
else
|
||||
#endif
|
||||
{
|
||||
usethisnum = "Twenty";
|
||||
}
|
||||
graphics.createtextboxflipme(" " + help.number(game.trinkets()) + " out of " + usethisnum + " ", 50, 135, 174, 174, 174);
|
||||
graphics.createtextboxflipme(" " + help.number_words(game.trinkets()) + " out of " + usethisnum + " ", 50, 135, 174, 174, 174);
|
||||
graphics.textboxcenterx();
|
||||
|
||||
if (!game.backgroundtext)
|
||||
|
||||
Reference in New Issue
Block a user