Skip to content

Commit

Permalink
working on a big update
Browse files Browse the repository at this point in the history
  • Loading branch information
shysolocup committed Nov 20, 2024
1 parent 8090a6b commit 5f63b05
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-wiki.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish wiki
on:
push:
paths:
- wiki/**
- Wiki/**
- .github/workflows/publish-wiki.yml

concurrency:
Expand Down
11 changes: 8 additions & 3 deletions StarterPlayerScripts/GlobalSide/Damage/ClientSide.client.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
-- events
local clientEv = script.Parent.PingPong.Client;
local finalEv = script.Parent.PingPong.Finally;
local GlobalSide = require(script.Parent.Parent.Parent);

local rep = game.ReplicatedStorage;


local clientEv = rep.GameEvents.GlobalSide.Damage.Client;
local finalEv = rep.GameEvents.GlobalSide.Damage.Finally;
local Revared = require(rep.Modules.Revared)
local GlobalSide = Revared:Require("GlobalSide");


local player = game.Players.LocalPlayer;
Expand Down
11 changes: 8 additions & 3 deletions StarterPlayerScripts/GlobalSide/Heal/ClientSide.client.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
-- events
local clientEv = script.Parent.PingPong.Client;
local finalEv = script.Parent.PingPong.Finally;
local GlobalSide = require(script.Parent.Parent.Parent);

local rep = game.ReplicatedStorage;


local clientEv = rep.GameEvents.GlobalSide.Hela.Client;
local finalEv = rep.GameEvents.GlobalSide.Heal.Finally;
local Revared = require(rep.Modules.Revared)
local GlobalSide = Revared:Require("GlobalSide");


local player = game.Players.LocalPlayer;
Expand Down
File renamed without changes.

0 comments on commit 5f63b05

Please sign in to comment.