Skip to content

Commit 846a3ee

Browse files
Noisy Fix
- Fixed unlocalized description
1 parent 4d8bdb9 commit 846a3ee

File tree

18 files changed

+24
-15
lines changed

18 files changed

+24
-15
lines changed

items/code.lua

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3534,17 +3534,6 @@ local log = {
35343534
return get_voucherref(vouchers)
35353535
end
35363536
end
3537-
local get_bossref = get_new_boss
3538-
function get_new_boss(...)
3539-
if G.GAME.LOG_BOSS then
3540-
local v = "" .. G.GAME.LOG_BOSS
3541-
if not G.GAME.USING_LOG then
3542-
G.GAME.LOG_BOSS = nil
3543-
end
3544-
return v
3545-
end
3546-
return get_bossref(...)
3547-
end
35483537
function Cryptid.predict_joker(seed)
35493538
local _pool, _pool_key = get_current_pool("Joker", nil, nil, seed)
35503539
center = pseudorandom_element(_pool, pseudoseed(_pool_key))
@@ -4162,9 +4151,6 @@ local delete = {
41624151
)
41634152
end,
41644153
use = function(self, card, area, copier)
4165-
if not G.GAME.banned_keys then
4166-
G.GAME.banned_keys = {}
4167-
end -- i have no idea if this is always initialised already tbh
41684154
if not G.GAME.cry_banned_pcards then
41694155
G.GAME.cry_banned_pcards = {}
41704156
end

items/misc.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,7 @@ local noisy = {
13741374
for i = self.config.min_chips, self.config.max_chips do
13751375
r_chips[#r_chips + 1] = tostring(i)
13761376
end
1377-
local loc_chips = " Chips "
1377+
local loc_chips = " " .. (localize("k_chips")) .. " "
13781378
mult_ui = {
13791379
{ n = G.UIT.T, config = { text = " +", colour = G.C.MULT, scale = 0.32 } },
13801380
{

lib/overrides.lua

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,14 @@ function get_new_boss()
119119
return bl
120120
end
121121
end
122+
-- Log
123+
if G.GAME.LOG_BOSS then
124+
local v = "" .. G.GAME.LOG_BOSS
125+
if not G.GAME.USING_LOG then
126+
G.GAME.LOG_BOSS = nil
127+
end
128+
return v
129+
end
122130
--This is how nostalgic deck replaces the boss blinds with Nostalgic versions
123131
if G.GAME.modifiers.cry_beta then
124132
local bl_key = string.sub(bl, 4)

localization/de.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5035,6 +5035,7 @@ return {
50355035
cry_blind_baneful_pack = "Öffne ein Unheilvolles Clownspaket am Ende der Runde",
50365036

50375037
k_code = "Code",
5038+
k_chips = "Chips",
50385039
k_content_set = "Thematisches Set",
50395040
b_content_sets = "Thematische Sets",
50405041
--Why aren't these in vanilla?

localization/en-us.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5082,6 +5082,7 @@ return {
50825082
cry_joke_placeholder = "(multiple of 8)",
50835083

50845084
k_code = "Code",
5085+
k_chips = "Chips",
50855086
k_content_set = "Thematic Set",
50865087
b_content_sets = "Thematic Sets",
50875088
--Why aren't these in vanilla?

localization/es_419.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3573,6 +3573,7 @@ return {
35733573
cry_debuff_obsidian_orb = "Aplica las habilidades de todos los jefes derrotados",
35743574

35753575
k_code = "Código",
3576+
k_chips = "fichas",
35763577
k_unique = "Único",
35773578
b_code_cards = "Cartas de código",
35783579
b_unique_cards = "Cartas únicas",

localization/es_ES.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4567,6 +4567,7 @@ return {
45674567
cry_joke_placeholder = "(múltiplo of 8)",
45684568

45694569
k_code = "Código",
4570+
k_chips = "fichas",
45704571
k_content_set = "Set temático",
45714572
b_content_sets = "Sets temáticos",
45724573
--Why aren't these in vanilla?

localization/fr.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5102,6 +5102,7 @@ return {
51025102
cry_joke_placeholder = "(multiple de 8)",
51035103

51045104
k_code = "Code",
5105+
k_chips = "Jetons",
51055106
k_content_set = "Set à thème",
51065107
b_content_sets = "Sets à thème",
51075108
--Why aren't these in vanilla?

localization/id.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3051,6 +3051,7 @@ return {
30513051
cry_debuff_obsidian_orb = "Applies abilities of all defeated bosses",
30523052

30533053
k_code = "Code",
3054+
k_chips = "chip",
30543055
b_code_cards = "Code Cards",
30553056
b_pull = "PULL",
30563057
cry_hooked_ex = "Hooked!",

localization/ja.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3050,6 +3050,7 @@ return {
30503050
cry_debuff_obsidian_orb = "Applies abilities of all defeated bosses",
30513051

30523052
k_code = "Code",
3053+
k_chips = "チップ",
30533054
b_code_cards = "Code Cards",
30543055
b_pull = "PULL",
30553056
cry_hooked_ex = "Hooked!",

0 commit comments

Comments
 (0)