Skip to main content

Last Update: 2024-08-22

Mod Release IDs

Mod Release IDs are identifiers used in Don't Starve Together to track major game updates and help mod developers handle version-specific features and compatibility. This document provides a reference for all mod release IDs used in the game.

Understanding Release IDs

Each major Don't Starve Together update is assigned a unique release ID, typically following the format R##_NAME where:

  • R## is a sequential number (e.g., R35)
  • NAME represents the update theme or content focus (e.g., SANITYTROUBLES)

Release IDs can be used in your mods to check for specific game versions and conditionally enable or disable features based on compatibility.

Using Release IDs in Mods

You can check for the availability of specific release IDs in your mod code:

-- Check if a specific update is available
if ReleaseID and ReleaseID.R35_SANITYTROUBLES then
-- Enable features that depend on R35_SANITYTROUBLES update
end

This allows your mod to use new features when available while maintaining compatibility with older game versions.

Complete Release ID List

Below is a chronological list of all release IDs in Don't Starve Together:

Release IDUpdate NameGame VersionRelease Date
R01_ANR_PART1A New Reign (Part 1)
R02_ANR_WARTSANDALLA New Reign: Warts and All
R03_ANR_ARTSANDCRAFTSA New Reign: Arts and Crafts
R04_ANR_CUTEFUZZYANIMALSA New Reign: Cute Fuzzy Animals
R05_ANR_HERDMENTALITYA New Reign: Herd Mentality
R06_ANR_AGAINSTTHEGRAINA New Reign: Against the Grain
R07_ANR_HEARTOFTHERUINSA New Reign: Heart of the Ruins
R08_ROT_TURNOFTIDESReturn of Them: Turn of Tides
R09_ROT_SALTYDOGReturn of Them: Salty Dog
R09_ROT_HOOKLINEANDINKERReturn of Them: Hook, Line, and Inker
R11_ROT_SHESELLSSEASHELLSReturn of Them: She Sells Seashells
R12_ROT_TROUBLEDWATERSReturn of Them: Troubled Waters
R13_ROT_FORGOTTENKNOWLEDGEReturn of Them: Forgotten Knowledge
R14_FARMING_REAPWHATYOUSOWReap What You Sow
R15_QOL_WORLDSETTINGSQuality of Life: World Settings
R16_ROT_MOONSTORMSReturn of Them: Moonstorms
R17_WATERLOGGEDWaterlogged
R18_QOL_SERVERPAUSINGQuality of Life: Server Pausing
R19_REFRESH_WOLFGANGCharacter Refresh: Wolfgang
R20_QOL_CRAFTING4LIFEQuality of Life: Crafting 4 Life
R21_REFRESH_WX78Character Refresh: WX-78
R22_PIRATEMONKEYSPirate Monkeys
R23_REFRESH_WICKERBOTTOMCharacter Refresh: Wickerbottom
R24_STS_ALITTLEDRAMAShared Through Steam: A Little Drama
R25_REFRESH_WAXWELLCharacter Refresh: Maxwell
R26_LOBBY_NETWORKQOLLobby Network QOL
R27_REFRESH_WILSONCharacter Refresh: Wilson
R28_LUNAR_RIFTLunar Rift
R29_SHADOW_RIFTShadow Rift
R30_ST_WOODWOLFWORMSkill Tree: Woodie, Wolfgang, and Wormwood
R31_LUNAR_MUTANTSLunar Mutants
R32_ST_WATHGRITHRWILLOWSkill Tree: Wathgrithr (Wigfrid) and Willow
R33_QOL_SPRINGCLEANINGQuality of Life: Spring Cleaning
R34_OCEANQOL_WINONAWURTOcean QOL: Winona and Wurt
R35_SANITYTROUBLESSanity Troubles627870August 22, 2024

Notes on Release ID Usage

  • Release IDs provide a more semantic way to check for game features than raw version numbers
  • The currently active release ID can be found via ReleaseID.Current
  • When backward compatibility is important, check for the existence of specific release IDs rather than assuming they exist
  • New release IDs are added with each major update to the game

See Also