Skip to content

Commit

Permalink
dumbass color begone
Browse files Browse the repository at this point in the history
  • Loading branch information
morrowwolf committed Nov 7, 2023
1 parent 5c7b595 commit 78df68f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion code/modules/client/preferences_savefile.dm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define SAVEFILE_VERSION_MIN 8
#define SAVEFILE_VERSION_MAX 21
#define SAVEFILE_VERSION_MAX 22

//handles converting savefiles to new formats
//MAKE SURE YOU KEEP THIS UP TO DATE!
Expand Down Expand Up @@ -89,6 +89,13 @@
dual_wield_pref = DUAL_WIELD_FIRE
S["dual_wield_pref"] << dual_wield_pref

if(savefile_version < 22)
var/temp_ooccolor
S["ooccolor"] >> temp_ooccolor
if(temp_ooccolor == "#b82e00")
temp_ooccolor = "#1c52f5"
S["ooccolor"] << temp_ooccolor

savefile_version = SAVEFILE_VERSION_MAX
return 1

Expand Down

0 comments on commit 78df68f

Please sign in to comment.