Show dragonflight beta version when /details

This commit is contained in:
Tercio Jose
2022-09-01 23:07:41 -03:00
parent c21cd7593a
commit e3a556562f
2 changed files with 6 additions and 0 deletions
+2
View File
@@ -18,6 +18,8 @@
_detalhes.BFACORE = 131 --core version on BFA launch
_detalhes.SHADOWLANDSCORE = 143 --core version on Shadowlands launch
_detalhes.dragonflight_beta_version = 14
Details = _detalhes
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+4
View File
@@ -1706,6 +1706,10 @@ function SlashCmdList.DETAILS (msg, editbox)
print (Loc ["STRING_DETAILS1"] .. "|cFFFFFF00DETAILS! VERSION|r: |cFFFFAA00R" .. (_detalhes.build_counter >= _detalhes.alpha_build_counter and _detalhes.build_counter or _detalhes.alpha_build_counter))
print (Loc ["STRING_DETAILS1"] .. "|cFFFFFF00GAME VERSION|r: |cFFFFAA00" .. _detalhes.game_version)
end
if (DetailsFramework.IsDragonflight()) then
print("Dragonflight BETA VERSION:", _detalhes.dragonflight_beta_version)
end
end
end