Skip to content
Snippets Groups Projects
Commit d0a094b2 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Initialize v variables to zero when creating a new world record.

This should never actually be done though since the map would be
completely empty.
parent 7aa7ea54
Branches
Tags
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -315,7 +315,7 @@ var World_Def = [
{
prop:'v',
type:'Array:40:SignedInteger',
def:new Array(40)
def:eval('var aret = []; while(aret.length < 40) aret.push(0); aret;')
},
{
prop:'s',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment