Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Oxide.Plugins
{
[Info("Build", "Gonzi", "2.2.3")]
[Info("Build", "Gonzi", "2.2.4")]
[Description("Build, spawn, plant, upgrade, deploy anything the way that you want it")]
public class Build : RustPlugin
{
Expand Down Expand Up @@ -1212,12 +1212,12 @@ private static void SetRotation(BaseEntity baseentity, Quaternion rotation)
{
buildingblock.RefreshEntityLinks();
buildingblock.UpdateSurroundingEntities();
buildingblock.SendNetworkUpdateImmediate(false);
buildingblock.SendNetworkUpdateImmediate();
buildingblock.ClientRPC(null, "RefreshSkin");
}
else
{
baseentity.SendNetworkUpdateImmediate(false);
baseentity.SendNetworkUpdateImmediate();
baseentity.ClientRPC(null, "RefreshSkin");
}
}
Expand Down