1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-22 17:49:43 +01:00

Remove localisation features from the RPC, as people on English Discord would see it in the player's language.

This commit is contained in:
Buggem's Fedora PC 2024-12-15 08:45:24 +11:00
parent 7d3e7db2b7
commit 17fea40b23

View file

@ -979,7 +979,7 @@ static enum LoopCode loop_begin(void)
}
// Update network per frame.
NETWORK_update(map.currentarea(game.roomx, game.roomy), loc::gettext_roomname(map.custommode, game.roomx, game.roomy, map.roomname, map.roomname_special));
NETWORK_update(map.currentarea(game.roomx, game.roomy), map.roomname);
return Loop_continue;
}