Skip to content

Commit

Permalink
Update main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrotski authored Aug 26, 2024
1 parent 96b10f7 commit 886fa43
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
)

// Version of the program
const Version = "v1.0.15"
const Version = "v1.0.16"

func main() {
fmt.Println("Program Version:", Version)
Expand Down Expand Up @@ -94,6 +94,7 @@ func main() {
"bAutoResetGuildNoOnlinePlayers": "AUTO_RESET_GUILD_NO_ONLINE_PLAYERS",
"AutoResetGuildTimeNoOnlinePlayers": "AUTO_RESET_GUILD_TIME_NO_ONLINE_PLAYERS",
"GuildPlayerMaxNum": "GUILD_PLAYER_MAX_NUM",
"BaseCampMaxNumInGuild": "BASE_CAMP_MAX_NUM_IN_GUILD",
"PalEggDefaultHatchingTime": "PAL_EGG_DEFAULT_HATCHING_TIME",
"WorkSpeedRate": "WORK_SPEED_RATE",
"bIsMultiplay": "IS_MULTIPLAY",
Expand Down Expand Up @@ -122,6 +123,7 @@ func main() {
"AllowConnectPlatform": "ALLOW_CONNECT_PLATFORM",
"bIsUseBackupSaveData": "USE_BACKUP_SAVE_DATA",
"LogFormatType": "LOG_FORMAT_TYPE",
"SupplyDropSpan": "SUPPLY_DROP_SPAN",
// Add other environment variables and corresponding INI keys here
}

Expand Down Expand Up @@ -169,6 +171,7 @@ func main() {
"AutoResetGuildTimeNoOnlinePlayers": "Floating", //AutoResetGuildTimeNoOnlinePlayers=72.000000,
"bAutoResetGuildNoOnlinePlayers": "TrueFalse", //bAutoResetGuildNoOnlinePlayers=False,
"GuildPlayerMaxNum": "Numeric", //GuildPlayerMaxNum=20,
"BaseCampMaxNumInGuild": "Numeric", //BaseCampMaxNumInGuild=4,
"PalEggDefaultHatchingTime": "Floating", //PalEggDefaultHatchingTime=72.000000,
"WorkSpeedRate": "Floating", //WorkSpeedRate=1.000000,
"bIsMultiplay": "TrueFalse", //bIsMultiplay=False,
Expand Down Expand Up @@ -198,6 +201,7 @@ func main() {
"AllowConnectPlatform": "String", //AllowConnectPlatform=Steam
"bIsUseBackupSaveData": "TrueFalse", //bIsUseBackupSaveData=True
"LogFormatType": "String", //LogFormatType=Text
"SupplyDropSpan": "Numeric", //SupplyDropSpan=180
// Add other keys as needed
}

Expand Down

0 comments on commit 886fa43

Please sign in to comment.