diff --git a/Sources/epoch_code/compile/setup/masterLoop/Event1.sqf b/Sources/epoch_code/compile/setup/masterLoop/Event1.sqf
index 0bf94211..c8f05839 100644
--- a/Sources/epoch_code/compile/setup/masterLoop/Event1.sqf
+++ b/Sources/epoch_code/compile/setup/masterLoop/Event1.sqf
@@ -172,7 +172,11 @@ if (EPOCH_debugMode) then {
if (_x == "Temp") then {
_customVars = _customVars + format["%1: %2°F | %3°C
", _x,_val,_val call EPOCH_convertTemp];
} else {
- _customVars = _customVars + format["%1: %2
", _x,_val];
+ if (_x == "Crypto") then {
+ _customVars = _customVars + format["%1: %2
", _x,Epoch_PlayerCrypto];
+ } else {
+ _customVars = _customVars + format["%1: %2
", _x,_val];
+ };
};
}
}forEach _customVarNames;