Skip to content

Commit

Permalink
Merge branch 'Development'
Browse files Browse the repository at this point in the history
  • Loading branch information
AR-Ghodrati committed Oct 1, 2021
2 parents 25d89d9 + be7123d commit d0b7d17
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 22 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Assets/Plugins/GameService/Utils/RealTimeUtil/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [1.6.2] Stable - 2021-10-01

### Fixed

- Fixed Remote Functions


## [1.6.1] Stable - 2021-08-26

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,12 @@ private static void UpdateFunctions()

var type = monoBehaviour.GetType();
var methods = GetMethods(type, typeof(GsLiveFunction));

if (_runnableCache.ContainsKey(type)) _runnableCache[type] = methods;
else _runnableCache.Add(type,methods);

if (_runnableCache.ContainsKey(type)) continue;

_runnableCache.Add(type, methods);
_runnableCacheMono.Add(type, monoBehaviour);
if (_runnableCacheMono.ContainsKey(type)) _runnableCacheMono[type] = monoBehaviour;
else _runnableCacheMono.Add(type,monoBehaviour);
}
}

Expand Down

0 comments on commit d0b7d17

Please sign in to comment.