no shiny/0

Prevent possible divide by 0 issue for Shiny boost
This commit is contained in:
darkfire006 2021-09-29 02:23:17 -05:00
parent 6ca257ce91
commit bdebdd8f7f
1 changed files with 5 additions and 0 deletions

View File

@ -36,6 +36,11 @@
Me.Name = Name
Me.Description = Description
Me.Value = Value
If Me.EventType = EventTypes.ShinyMultiplier AndAlso Me.Value = "0" Then
Me.Value = "0.1"
End If
End Sub
Public Overrides Function ToString() As String