diff --git a/Jewel/Form1.Designer.cs b/Jewel/Form1.Designer.cs
index 78af482..8897de4 100644
--- a/Jewel/Form1.Designer.cs
+++ b/Jewel/Form1.Designer.cs
@@ -461,7 +461,7 @@ private void InitializeComponent()
             this.WarpToBtn.Name = "WarpToBtn";
             this.WarpToBtn.Size = new System.Drawing.Size(98, 23);
             this.WarpToBtn.TabIndex = 7;
-            this.WarpToBtn.Text = "Warp To";
+            this.WarpToBtn.Text = "Teleport Here";
             this.WarpToBtn.UseVisualStyleBackColor = true;
             this.WarpToBtn.Click += new System.EventHandler(this.WarpToBtn_Click);
             // 
@@ -726,7 +726,7 @@ private void InitializeComponent()
             this.cameraTab.Location = new System.Drawing.Point(4, 24);
             this.cameraTab.Name = "cameraTab";
             this.cameraTab.Padding = new System.Windows.Forms.Padding(3);
-            this.cameraTab.Size = new System.Drawing.Size(529, 263);
+            this.cameraTab.Size = new System.Drawing.Size(529, 370);
             this.cameraTab.TabIndex = 1;
             this.cameraTab.Text = "Camera";
             this.cameraTab.UseVisualStyleBackColor = true;
diff --git a/Jewel/Form1.cs b/Jewel/Form1.cs
index 1c76ece..91e3493 100644
--- a/Jewel/Form1.cs
+++ b/Jewel/Form1.cs
@@ -475,13 +475,13 @@ private void positionTextBox_TextChanged(object sender, EventArgs e)
                 switch (textBox.Tag)
                 {
                     case "x":
-                        //selectedEntity.transform.relPosition.X = val;
+                        selectedEntity.transform.relPosition.X = val;
                         break;
                     case "y":
-                        //selectedEntity.transform.relPosition.Y = val;
+                        selectedEntity.transform.relPosition.Y = val;
                         break;
                     case "z":
-                        //selectedEntity.transform.relPosition.Z = val;
+                        selectedEntity.transform.relPosition.Z = val;
                         break;
                     default:
                         break;
diff --git a/Jewel/Jewel.csproj b/Jewel/Jewel.csproj
index 11d17cc..143aab8 100644
--- a/Jewel/Jewel.csproj
+++ b/Jewel/Jewel.csproj
@@ -56,8 +56,8 @@
     <Prefer32Bit>true</Prefer32Bit>
   </PropertyGroup>
   <ItemGroup>
-    <Reference Include="Memory, Version=1.2.21.0, Culture=neutral, processorArchitecture=AMD64">
-      <HintPath>..\packages\Memory.dll.x64.1.2.21\lib\netstandard2.0\Memory.dll</HintPath>
+    <Reference Include="Memory, Version=1.2.24.0, Culture=neutral, processorArchitecture=MSIL">
+      <HintPath>..\packages\Memory.dll.x64.1.2.24\lib\netstandard2.0\Memory.dll</HintPath>
     </Reference>
     <Reference Include="System" />
     <Reference Include="System.Core" />
diff --git a/Jewel/packages.config b/Jewel/packages.config
index 991bad7..b8e6ca9 100644
--- a/Jewel/packages.config
+++ b/Jewel/packages.config
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
 <packages>
-  <package id="Memory.dll.x64" version="1.2.21" targetFramework="net461" />
+  <package id="Memory.dll.x64" version="1.2.24" targetFramework="net461" />
   <package id="System.Security.Principal.Windows" version="5.0.0" targetFramework="net461" />
 </packages>
\ No newline at end of file